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.
1 parent d2cda2d commit 200872fCopy full SHA for 200872f
.github/workflows/codeql-monorepo.yml
@@ -32,6 +32,7 @@ jobs:
32
contents: read
33
outputs:
34
projects: ${{ steps.changes.outputs.projects }}
35
+ scan-required: ${{ steps.changes.outputs.scan-required }}
36
steps:
37
# # Only checkout the latest commit and just the packages folder
38
# - name: Checkout repository
@@ -73,8 +74,12 @@ jobs:
73
74
with:
75
projects-json: monorepo-projects.json
76
77
+ - name: Print scan-required output
78
+ run: |
79
+ echo "Scan Required: ${{ steps.changes.outputs.scan-required }}"
80
+
81
scan:
- #if: needs.changes.outputs.scan-required == true
82
+ if: needs.changes.outputs.scan-required == true
83
runs-on: ubuntu-latest
84
permissions:
85
0 commit comments