We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 200872f + f155ced commit 232ba6aCopy full SHA for 232ba6a
.github/workflows/codeql-monorepo.yml
@@ -19,10 +19,10 @@ on:
19
pull_request:
20
branches: ["main"]
21
types:
22
- - opened
23
- - reopened
24
- - synchronize
25
- - closed
+ - opened # scan new PRs
+ - reopened # scan PRs that are reopened
+ - synchronize # scan newly pushed commits to PRs
+ - closed # republish results from merged PRs
26
27
jobs:
28
changes:
@@ -79,7 +79,7 @@ jobs:
79
echo "Scan Required: ${{ steps.changes.outputs.scan-required }}"
80
81
scan:
82
- if: needs.changes.outputs.scan-required == true
+ if: needs.changes.outputs.scan-required == 'true'
83
runs-on: ubuntu-latest
84
permissions:
85
contents: read
0 commit comments