File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ concurrency:
2222 # Using `github.run_id` (unique val) instead of `github.ref` here
2323 # because we don't want to cancel this workflow on master only for PRs
2424 # as that makes reproducing issues easier
25- group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
25+ # Adding github.event.action == labeled as a means to differentiate the trigger due to adding a label -- most labels are
26+ # no-ops except for `depot`
27+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}-${{ github.event.action == 'labeled' }}
2628 cancel-in-progress : true
2729
2830env :
@@ -442,7 +444,7 @@ jobs:
442444 strategy :
443445 fail-fast : false
444446 matrix : ${{ fromJson(needs.smoke_test_matrix.outputs.matrix) }}
445- if : ${{ always() && !failure() && !cancelled() && needs.smoke_test_matrix.outputs.matrix != '[]' }}
447+ if : ${{ needs.smoke_test_matrix.outputs.matrix != '[]' }}
446448 env :
447449 # TODO Chakru: Review if required
448450 MIXPANEL_API_SECRET : ${{ secrets.MIXPANEL_API_SECRET }}
You can’t perform that action at this time.
0 commit comments