Skip to content

Commit cef1558

Browse files
authored
[GH Actions] Run wasm build when kokoro:run is removed. (KhronosGroup#6233)
I made a change to the bazel build to run when the label was removed: KhronosGroup#6230, but I did not do it for the wasm build.
1 parent c8fd101 commit cef1558

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/wasm.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,16 @@ name: Wasm Build
22
permissions:
33
contents: read
44

5-
on: [push, pull_request]
5+
on:
6+
push:
7+
branches:
8+
- 'main'
9+
pull_request:
10+
types: [opened, synchronize, reopened, unlabeled]
611

712
jobs:
813
build:
14+
if: github.event.action != 'unlabeled' || github.event.label.name == 'kokoro:run'
915
runs-on: ubuntu-latest
1016

1117
steps:

0 commit comments

Comments
 (0)