GitHub: Special builds for more branches
Instead of triggering scan-build builds on pushes to the `scan-build` branch, or valgrind builds on pushes to the `valgrind` branch, let's have pushes to branches matching `scan-build*` and `valgrind*` branch name globs trigger the corresponding builds. Do not forget to delete those branches when you're done!
This commit is contained in:
2
.github/workflows/scanbuild.yml
vendored
2
.github/workflows/scanbuild.yml
vendored
@@ -4,7 +4,7 @@ on:
|
||||
push:
|
||||
# Pushes to this branch get the scan-build treatment
|
||||
branches:
|
||||
- 'scan-build'
|
||||
- 'scan-build*'
|
||||
|
||||
pull_request:
|
||||
# Changing this build gets it to run
|
||||
|
2
.github/workflows/valgrind.yml
vendored
2
.github/workflows/valgrind.yml
vendored
@@ -4,7 +4,7 @@ on:
|
||||
push:
|
||||
# Pushes to the valgrind branch get the valgrind treatment
|
||||
branches:
|
||||
- 'valgrind'
|
||||
- 'valgrind*'
|
||||
|
||||
pull_request:
|
||||
# Changing this build also gets it to run
|
||||
|
Reference in New Issue
Block a user