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:
Joshua Lock
2022-03-29 18:02:06 +01:00
committed by GitHub
parent 31311a3151
commit 25528e0083

View File

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