File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 4141 if : github.event_name == 'pull_request'
4242 run : |
4343 echo "enable_integration=true" >> $GITHUB_ENV
44+ - name : Decide manual trigger integration test enablement
45+ # Always enable integration tests when manually triggered
46+ if : github.event_name == 'workflow_dispatch'
47+ run : |
48+ echo "enable_integration=true" >> $GITHUB_ENV
4449 - name : Checkout post-submit commits
4550 if : github.event_name == 'push'
4651 uses : actions/checkout@v4
Original file line number Diff line number Diff line change 4545 run: |
4646 echo "enable_integration=true" >> $GITHUB_ENV
4747
48+ - name: Decide manual trigger integration test enablement
49+ # Always enable integration tests when manually triggered
50+ if: github.event_name == 'workflow_dispatch'
51+ run: |
52+ echo "enable_integration=true" >> $GITHUB_ENV
53+
4854 - name: Checkout post-submit commits
4955 if: github.event_name == 'push'
5056 uses: actions/checkout@v4
You can’t perform that action at this time.
0 commit comments