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 359575d commit d3986b0Copy full SHA for d3986b0
.github/workflows/cve_checks.yml
@@ -1,9 +1,14 @@
1
name: "Infra: CVE checks"
2
+
3
on:
4
pull_request:
5
types: [ "opened", "reopened", "synchronize" ]
6
+ paths:
7
+ - 'infra/**' # Run only when files in 'infra/' change
8
push:
9
branches: [ "main" ]
10
11
+ - 'infra/**'
12
workflow_dispatch:
13
schedule:
14
# * is a special character in YAML so you have to quote this string
@@ -76,7 +81,7 @@ jobs:
76
81
77
82
notify:
78
83
needs: check-cves
79
- if: ${{ always() && needs.build-and-test.result == 'failure' && github.event_name == 'schedule' }}
84
+ if: ${{ always() && needs.check-cves.result == 'failure' && github.event_name == 'schedule' }}
80
85
uses: ./.github/workflows/infra_discord_hook.yml
86
with:
87
message: "Attention! CVE checks run failed! Please fix them CVEs :("
0 commit comments