Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
# yamllint disable rule:line-length
name: Weekly CI trigger
name: Periodic CI trigger
on: # yamllint disable-line rule:truthy
workflow_dispatch:
schedule:
- cron: 0 23 * * 6
- cron: 0 12 * * 0
env:
BRANCH_NAME: weekly-ci
BRANCH_NAME: periodic-ci
COMMIT_MESSAGE: "ci: This PR is to trigger periodic CI testing"
BODY_MESSAGE: >-
This PR is for the purpose of triggering periodic CI testing.
Expand All @@ -16,7 +16,9 @@ env:
permissions:
contents: read
jobs:
weekly_ci:
periodic_ci:
# Set repository or organization variable PERIODIC_CI_ENABLED='true' to enable
if: vars.PERIODIC_CI_ENABLED == 'true'

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will we manage this centraly via .github?

runs-on: ubuntu-latest
permissions:
issues: write
Expand Down