We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c106775 commit 9834cd2Copy full SHA for 9834cd2
1 file changed
.github/workflows/e2e-tests.yml
@@ -4,9 +4,6 @@ on:
4
# Nightly workflow - Run at 2 AM UTC daily
5
schedule:
6
- cron: '0 2 * * *'
7
- # Post-merge - Run after changes are merged to main
8
- push:
9
- branches: [main]
10
# Manual trigger - Support workflow_dispatch for on-demand runs
11
workflow_dispatch:
12
inputs:
@@ -130,7 +127,7 @@ jobs:
130
127
retention-days: 30
131
128
132
129
- name: Notify on Failure
133
- if: failure() && (github.event_name == 'schedule' || github.event_name == 'push') && steps.check-secrets.outputs.has-secrets == 'true'
+ if: failure() && github.event_name == 'schedule' && steps.check-secrets.outputs.has-secrets == 'true'
134
uses: actions/github-script@v7
135
with:
136
script: |
0 commit comments