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:
Nicolas Williams
2022-01-15 16:29:11 -06:00
parent 1ba296dc6a
commit 6ea0520388
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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