Skip to content

Commit 2c7b05c

Browse files
committed
Add schedule
1 parent 38f9af8 commit 2c7b05c

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ jobs:
9494
tags: |
9595
type=semver,pattern={{version}}
9696
type=edge
97+
type=schedule
9798
type=ref,event=pr
9899
type=ref,event=branch,suffix=-rc,enable=${{ startsWith(github.ref, 'refs/heads/release') }}
99100
type=raw,value=${{ inputs.tag }},enable=${{ inputs.tag != '' }}

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
tags:
99
- "v[0-9]+.[0-9]+.[0-9]+*"
1010
pull_request:
11+
schedule:
12+
- cron: "0 4 * * *" # run every day at 4am UTC
1113

1214
defaults:
1315
run:

.github/workflows/conformance.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ defaults:
1717
run:
1818
shell: bash
1919

20+
concurrency:
21+
group: ${{ github.ref_name }}-conformance
22+
cancel-in-progress: true
23+
2024
permissions:
2125
contents: read
2226

@@ -48,6 +52,7 @@ jobs:
4852
tags: |
4953
type=semver,pattern={{version}}
5054
type=edge
55+
type=schedule
5156
type=ref,event=pr
5257
type=ref,event=branch,suffix=-rc,enable=${{ startsWith(github.ref, 'refs/heads/release') }}
5358
@@ -60,6 +65,7 @@ jobs:
6065
tags: |
6166
type=semver,pattern={{version}}
6267
type=edge
68+
type=schedule
6369
type=ref,event=pr
6470
type=ref,event=branch,suffix=-rc,enable=${{ startsWith(github.ref, 'refs/heads/release') }}
6571

.github/workflows/functional.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ defaults:
1414
run:
1515
shell: bash
1616

17+
concurrency:
18+
group: ${{ github.ref_name }}-functional
19+
cancel-in-progress: true
20+
1721
permissions:
1822
contents: read
1923

0 commit comments

Comments
 (0)