Skip to content

Commit 19aec72

Browse files
authored
Merge pull request #20 from ocaisa/update_ci_triggers
Make sure CI triggers for all workflows on push to `main`
2 parents 383b39e + 76e43ba commit 19aec72

10 files changed

+11
-11
lines changed

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- cron: '25 15 * * 3'
1111
push:
1212
branches:
13-
- '*-software.eessi.io'
13+
- 'main'
1414

1515
# Declare default permissions as read only.
1616
permissions: read-all

.github/workflows/test_eessi_container_script.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Tests for eessi_container.sh script
33
on:
44
push:
5-
branches: [ "*-software.eessi.io" ]
5+
branches: [ "main" ]
66
pull_request:
77
workflow_dispatch:
88
permissions:

.github/workflows/test_licenses.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Test software licenses
33
on:
44
push:
5-
branches: [ "*-software.eessi.io" ]
5+
branches: [ "main" ]
66
pull_request:
77
permissions:
88
contents: read # to fetch code (actions/checkout)

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Tests
33
on:
44
push:
5-
branches: [ "*-software.eessi.io" ]
5+
branches: [ "main" ]
66
pull_request:
77
permissions:
88
contents: read # to fetch code (actions/checkout)

.github/workflows/tests_archdetect.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Tests for eessi_archdetect.sh
33
on:
44
push:
5-
branches: [ "*-software.eessi.io" ]
5+
branches: [ "main" ]
66
pull_request:
77
permissions:
88
contents: read # to fetch code (actions/checkout)

.github/workflows/tests_eessi_extend_module.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Tests for EESSI-extend module functionality in software.eessi.io
33
on:
44
push:
5-
branches: [ "*-software.eessi.io" ]
5+
branches: [ "main" ]
66
pull_request:
77
permissions:
88
contents: read # to fetch code (actions/checkout)

.github/workflows/tests_eessi_module.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Tests for eessi_module_functionality in software.eessi.io
33
on:
44
push:
5-
branches: [ "*-software.eessi.io" ]
5+
branches: [ "main" ]
66
pull_request:
77
permissions:
88
contents: read # to fetch code (actions/checkout)

.github/workflows/tests_init.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Tests for init scripts
33
on:
44
push:
5-
branches: [ "*-software.eessi.io" ]
5+
branches: [ "main" ]
66
pull_request:
77
permissions:
88
contents: read # to fetch code (actions/checkout)

.github/workflows/tests_init_module.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Check for EESSI init shell scripts to load eessi software module in software.eessi.io
33
on:
44
push:
5-
branches: [ "*-software.eessi.io" ]
5+
branches: [ "main" ]
66
pull_request:
77
workflow_dispatch:
88
permissions:

.github/workflows/tests_link_nvidia_host_libraries.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test NVIDIA Host Libraries Linking
33
on:
44
push:
55
branches:
6-
- '*-software.eessi.io' # Matches any branch ending with '-software.eessi.io'
6+
- 'main'
77
pull_request:
88
paths:
99
- 'scripts/gpu_support/nvidia/link_nvidia_host_libraries.sh' # PR changes only relevant for this specific file
@@ -196,4 +196,4 @@ jobs:
196196
echo "$output" | grep "have already been linked" || { echo "Missing 'already linked' message"; exit 1; }
197197
198198
echo "Second normal run test passed"
199-
199+

0 commit comments

Comments
 (0)