We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cadf071 commit 9e022d9Copy full SHA for 9e022d9
.github/workflows/build.yml
@@ -123,8 +123,8 @@ jobs:
123
key: ${{ env.BUILD_CACHE_KEY }}
124
- name: Check bundle sizes
125
uses: getsentry/size-limit-action@v3
126
- # Only run size check on master or pull requests
127
- if: github.ref == 'refs/heads/master' || github.event_name == 'pull_request'
+ # Don't run size check on release branches - at that point, we're already committed
+ if: ${{ !startsWith(github.ref, 'release') }}
128
with:
129
github_token: ${{ secrets.GITHUB_TOKEN }}
130
# see https://github.com/getsentry/size-limit-action#usage
0 commit comments