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 193ecf9 commit 510217fCopy full SHA for 510217f
.github/workflows/check-vulns.yml
@@ -58,7 +58,7 @@ jobs:
58
59
create-issues:
60
needs: check-vulns
61
- if: ${{ always() }}
+ if: ${{ always() && needs.check-vulns.outputs.matrix != '' }}
62
runs-on: ubuntu-latest
63
strategy:
64
matrix: ${{ fromJson(needs.check-vulns.outputs.matrix) }}
.github/workflows/daily.yml
@@ -21,6 +21,7 @@ jobs:
21
check-vulns:
22
name: Check vulnerabilities on ${{ matrix.nodejsStream }}
23
needs: get-supported-versions
24
+ if: ${{ needs.get-supported-versions.outputs.matrix != '' }}
25
secrets: inherit
26
27
fail-fast: false
0 commit comments