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 afffdac commit 82db382Copy full SHA for 82db382
.github/workflows/build.yml
@@ -298,11 +298,14 @@ jobs:
298
path: ${{ env.CACHED_BUILD_PATHS }}
299
key: ${{ env.BUILD_CACHE_KEY }}
300
- name: Check bundle sizes
301
- uses: getsentry/size-limit-action@main-skip-step
+ uses: getsentry/size-limit-action@runForBranch
302
with:
303
github_token: ${{ secrets.GITHUB_TOKEN }}
304
skip_step: build
305
main_branch: develop
306
+ # When on release branch, we want to always run
307
+ # Else, we fall back to the default handling of the action
308
+ run_for_branch: ${{ (needs.job_get_metadata.outputs.is_release == 'true' && 'true') || '' }}
309
310
job_lint:
311
name: Lint
0 commit comments