Skip to content

Commit

Permalink
ci: Skip metrics on release branches (#4312)
Browse files Browse the repository at this point in the history
  • Loading branch information
krystofwoldrich authored Nov 26, 2024
1 parent a11c735 commit d56d245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
metrics:
runs-on: ${{ matrix.runs-on }}
needs: [diff_check, auth_token_check]
if: ${{ needs.diff_check.outputs.skip_ci != 'true' && needs.auth_token_check.outputs.skip_ci != 'true' }}
if: ${{ needs.diff_check.outputs.skip_ci != 'true' && needs.auth_token_check.outputs.skip_ci != 'true' && !startsWith(github.ref, 'refs/heads/release/') }}
env:
SENTRY_DISABLE_AUTO_UPLOAD: 'true'
strategy:
Expand Down

0 comments on commit d56d245

Please sign in to comment.