Skip to content

Commit 200872f

Browse files
authored
Update codeql-monorepo.yml
1 parent d2cda2d commit 200872f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/codeql-monorepo.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
contents: read
3333
outputs:
3434
projects: ${{ steps.changes.outputs.projects }}
35+
scan-required: ${{ steps.changes.outputs.scan-required }}
3536
steps:
3637
# # Only checkout the latest commit and just the packages folder
3738
# - name: Checkout repository
@@ -73,8 +74,12 @@ jobs:
7374
with:
7475
projects-json: monorepo-projects.json
7576

77+
- name: Print scan-required output
78+
run: |
79+
echo "Scan Required: ${{ steps.changes.outputs.scan-required }}"
80+
7681
scan:
77-
#if: needs.changes.outputs.scan-required == true
82+
if: needs.changes.outputs.scan-required == true
7883
runs-on: ubuntu-latest
7984
permissions:
8085
contents: read

0 commit comments

Comments
 (0)