Skip to content

Commit 301af0d

Browse files
authored
ci: Enable workflows on release/v0.13 branch when changes are submitted (#2372)
- Workflow in that branch was not triggered on pull requests to release branches
1 parent fdd921d commit 301af0d

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/node.js.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,15 @@ name: Node.js CI
55

66
on:
77
push:
8-
branches: [main]
8+
branches:
9+
- main
10+
- 'release/**'
11+
- 'feature/**'
912
pull_request:
10-
branches: [main]
13+
branches:
14+
- main
15+
- 'release/**'
16+
- 'feature/**'
1117

1218
jobs:
1319
build:

0 commit comments

Comments
 (0)