Skip to content

Commit cc83c0b

Browse files
authored
skip e2e if commit message contains Release (#230)
1 parent ed2e79a commit cc83c0b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/end-to-end.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
jobs:
1010
node-install:
1111
runs-on: ubuntu-latest
12+
# Skip this job for version bump commits (binary won't exist yet)
13+
if: "!contains(github.event.head_commit.message, 'Release')"
1214
strategy:
1315
matrix:
1416
node: [ 12, 14, 15, 16, 17, 18, 19, 20 ]

0 commit comments

Comments
 (0)