Skip to content

Commit c2620d6

Browse files
authored
Merge pull request #1678 from stackhpc/skc-upstream-sync
CI: Add upstream-sync workflow
2 parents becb4e7 + bb093ca commit c2620d6

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/upstream-sync.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: Upstream Sync
3+
'on':
4+
schedule:
5+
- cron: "15 8 * * 1"
6+
workflow_dispatch:
7+
permissions:
8+
contents: write
9+
pull-requests: write
10+
jobs:
11+
synchronise-2023-1:
12+
if: github.repository == 'stackhpc/stackhpc-kayobe-config'
13+
name: Synchronise 2023.1
14+
uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main
15+
with:
16+
release_series: 2023.1
17+
synchronise-2024-1:
18+
if: github.repository == 'stackhpc/stackhpc-kayobe-config'
19+
name: Synchronise 2024.1
20+
uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main
21+
with:
22+
release_series: 2024.1
23+
synchronise-2025.1:
24+
if: github.repository == 'stackhpc/stackhpc-kayobe-config'
25+
name: Synchronise 2025.1
26+
uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main
27+
with:
28+
release_series: 2025.1
29+
synchronise-master:
30+
if: github.repository == 'stackhpc/stackhpc-kayobe-config'
31+
name: Synchronise master
32+
uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main
33+
with:
34+
release_series: master

0 commit comments

Comments
 (0)