Skip to content

Commit 6cbb532

Browse files
authored
Merge pull request #7604 from sylvestre/gh
github/action: on fork, run the CI for all the branches (currently: only main)
2 parents 61b7f4b + b530fdc commit 6cbb532

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/CICD.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
tags:
2222
- '*'
2323
branches:
24-
- main
24+
- '*'
2525

2626
permissions:
2727
contents: read # to fetch code (actions/checkout)

.github/workflows/CheckScripts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
on:
99
push:
1010
branches:
11-
- main
11+
- '*'
1212
paths:
1313
- 'util/**/*.sh'
1414
pull_request:

.github/workflows/GnuTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
pull_request:
1414
push:
1515
branches:
16-
- main
16+
- '*'
1717

1818
permissions:
1919
contents: read

.github/workflows/android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
pull_request:
99
push:
1010
branches:
11-
- main
11+
- '*'
1212

1313

1414
permissions:

.github/workflows/code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88
push:
99
branches:
10-
- main
10+
- '*'
1111

1212
env:
1313
# * style job configuration

.github/workflows/freebsd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
pull_request:
1111
push:
1212
branches:
13-
- main
13+
- '*'
1414

1515
permissions:
1616
contents: read # to fetch code (actions/checkout)

.github/workflows/fuzzing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
pull_request:
77
push:
88
branches:
9-
- main
9+
- '*'
1010

1111
permissions:
1212
contents: read # to fetch code (actions/checkout)

0 commit comments

Comments
 (0)