Skip to content

Commit d56d245

Browse files
ci: Skip metrics on release branches (#4312)
1 parent a11c735 commit d56d245

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
metrics:
2929
runs-on: ${{ matrix.runs-on }}
3030
needs: [diff_check, auth_token_check]
31-
if: ${{ needs.diff_check.outputs.skip_ci != 'true' && needs.auth_token_check.outputs.skip_ci != 'true' }}
31+
if: ${{ needs.diff_check.outputs.skip_ci != 'true' && needs.auth_token_check.outputs.skip_ci != 'true' && !startsWith(github.ref, 'refs/heads/release/') }}
3232
env:
3333
SENTRY_DISABLE_AUTO_UPLOAD: 'true'
3434
strategy:

0 commit comments

Comments
 (0)