mirror of
https://github.com/slsa-framework/slsa-verifier.git
synced 2026-05-22 00:12:51 +00:00
fix(codeql): fix branch wildcard (#11)
* is a special character in YAML, so we must use quotes https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet Signed-off-by: Joshua Lock <jlock@vmware.com>
This commit is contained in:
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
@@ -13,7 +13,7 @@ name: "CodeQL"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main, * ]
|
||||
branches: [ main, '*' ]
|
||||
pull_request:
|
||||
# The branches below must be a subset of the branches above
|
||||
branches: [ main ]
|
||||
|
||||
Reference in New Issue
Block a user