ci: run for every branch instead of just master

Having CI always run on WIP branches without having to open a PR
beforehand makes it easier to debug CI issues.

GitHub currently does not have any apparent limit for CI runs and there
are no project-specific secrets as far as I know, so it should be safe
to remove these restrictions.
This commit is contained in:
Kelvin M. Klann 2023-04-23 21:27:59 -03:00
parent a2c8a5f03c
commit 5871b08a41
4 changed files with 0 additions and 9 deletions

View file

@ -2,7 +2,6 @@ name: Build-extra CI
on:
push:
branches: [ master ]
paths-ignore:
- '.github/ISSUE_TEMPLATE/*'
- 'contrib/syntax/**'
@ -25,7 +24,6 @@ on:
- SECURITY.md
- src/firecfg/firecfg.config
pull_request:
branches: [ master ]
paths-ignore:
- '.github/ISSUE_TEMPLATE/*'
- 'contrib/syntax/**'

View file

@ -2,7 +2,6 @@ name: Build CI
on:
push:
branches: [ master ]
paths-ignore:
- '.github/ISSUE_TEMPLATE/*'
- .git-blame-ignore-revs
@ -20,7 +19,6 @@ on:
- RELNOTES
- SECURITY.md
pull_request:
branches: [ master ]
paths-ignore:
- '.github/ISSUE_TEMPLATE/*'
- .git-blame-ignore-revs

View file

@ -7,7 +7,6 @@ name: "CodeQL"
on:
push:
branches: [ master ]
paths-ignore:
- '.github/ISSUE_TEMPLATE/*'
- 'contrib/syntax/**'
@ -30,8 +29,6 @@ on:
- SECURITY.md
- src/firecfg/firecfg.config
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
paths-ignore:
- '.github/ISSUE_TEMPLATE/*'
- 'contrib/syntax/**'

View file

@ -2,7 +2,6 @@ name: Profile Checks
on:
push:
branches: [ master ]
paths:
- 'ci/check/profiles/**'
- 'etc/**'
@ -10,7 +9,6 @@ on:
- contrib/sort.py
- src/firecfg/firecfg.config
pull_request:
branches: [ master ]
paths:
- 'ci/check/profiles/**'
- 'etc/**'