Skip to content

Commit 955a1b2

Browse files
authored
ci: Fix size check action to run on master (#6248)
1 parent 072ce5f commit 955a1b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ jobs:
228228
timeout-minutes: 15
229229
runs-on: ubuntu-latest
230230
# Size Check will error out outside of the context of a PR
231-
if: github.event_name == 'pull_request' || startsWith(github.ref, 'refs/heads/master/')
231+
if: github.event_name == 'pull_request' || github.ref == 'refs/heads/master'
232232
steps:
233233
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
234234
uses: actions/checkout@v3

0 commit comments

Comments
 (0)