Skip to content

Commit 46c7737

Browse files
committed
CI: Add upstream-sync workflow
We tried adding upstream-sync using stackhpc-release-train [1], but the workflow addition is skipped because our default branch is a StackHPC release branch [2]. Add workflow manually to synchronise releases that still exist upstream. [1] stackhpc/stackhpc-release-train#410 [2] stackhpc/stackhpc-release-train@49c06d1
1 parent becb4e7 commit 46c7737

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/upstream-sync.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
name: Synchronise 2023.1
13+
uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main
14+
with:
15+
release_series: 2023.1
16+
synchronise-2024-1:
17+
name: Synchronise 2024.1
18+
uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main
19+
with:
20+
release_series: 2024.1
21+
synchronise-2025.1:
22+
name: Synchronise 2025.1
23+
uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main
24+
with:
25+
release_series: 2025.1
26+
synchronise-master:
27+
name: Synchronise master
28+
uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main
29+
with:
30+
release_series: master

0 commit comments

Comments
 (0)