Skip to content

Commit b39f101

Browse files
authored
Schedule monthly run for test CI workflow (#9)
* Make all CI workflows cancelable * Schedule the test CI workflow monthly
1 parent cbcd15f commit b39f101

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

.github/workflows/format.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: Format
22

33
on: [push, pull_request]
44

5+
concurrency:
6+
group: ${{ github.ref }}-${{ github.workflow }}
7+
cancel-in-progress: true
8+
59
jobs:
610

711
format:

.github/workflows/lint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: Lint
22

33
on: [push, pull_request]
44

5+
concurrency:
6+
group: ${{ github.ref }}-${{ github.workflow }}
7+
cancel-in-progress: true
8+
59
jobs:
610

711
lint:

.github/workflows/test.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
name: Test
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
pull_request:
6+
schedule:
7+
- cron: '24 4 3 * *' # 4:24a on third day of the month
8+
9+
concurrency:
10+
group: ${{ github.ref }}-${{ github.workflow }}
11+
cancel-in-progress: true
412

513
jobs:
614
build-test-unix:

0 commit comments

Comments
 (0)