Skip to content

Commit

Permalink
CI: Adjust scheduling configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Nov 6, 2023
1 parent 5c2534f commit 9266b1e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ on:
push:
branches:
- master
schedule:
- cron: "50 19 * * 6"

# Allow job to be triggered manually.
workflow_dispatch:

# Run job as nightly recurrent job.
schedule:
- cron: '0 2 * * *'

# Cancel in-progress jobs when pushing to the same branch.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
name: docs

on:
pull_request: ~
push:
branches:
- master

# Allow job to be triggered manually.
workflow_dispatch:

# Run job as nightly recurrent job.
schedule:
- cron: '0 2 * * *'

# Cancel in-progress jobs when pushing to the same branch.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
---
name: test

on:
pull_request: ~
push:
branches:
- master

# Allow job to be triggered manually.
workflow_dispatch:

# Run job as nightly recurrent job.
schedule:
- cron: '0 2 * * *'

# Cancel in-progress jobs when pushing to the same branch.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand Down

0 comments on commit 9266b1e

Please sign in to comment.