We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fea46b commit c005ca0Copy full SHA for c005ca0
.github/workflows/replay-verify-testnet.yaml
@@ -49,9 +49,10 @@ jobs:
49
with:
50
cancel-workflow: ${{ github.event_name == 'schedule' }} # Cancel the workflow if it is scheduled on a fork
51
52
+ # TODO: Remove pull_request from the if statement after testing
53
replay:
54
if: |
- github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
55
+ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request'
56
needs: determine-test-metadata
57
uses: ./.github/workflows/workflow-run-replay-verify-on-archive.yaml
58
secrets: inherit
0 commit comments