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 2b3abd2 commit 150b7afCopy full SHA for 150b7af
.github/workflows/cve_checks.yml
@@ -1,5 +1,8 @@
1
name: "Infra: CVE checks"
2
on:
3
+ pull_request:
4
+ push:
5
+ branches: [ "main" ]
6
workflow_dispatch:
7
schedule:
8
# * is a special character in YAML so you have to quote this string
@@ -71,7 +74,7 @@ jobs:
71
74
72
75
notify:
73
76
needs: check-cves
- if: ${{ always() && needs.build-and-test.result == 'failure' }}
77
+ if: ${{ always() && needs.build-and-test.result == 'failure' && github.event_name == 'schedule' }}
78
uses: ./.github/workflows/infra_discord_hook.yml
79
with:
80
message: "Attention! CVE checks run failed! Please fix them CVEs :("
0 commit comments