Skip to content

Commit 1afc7f3

Browse files
authored
chore: add develop to github workflows branches (#133)
1 parent b0ffa2c commit 1afc7f3

File tree

6 files changed

+5
-40
lines changed

6 files changed

+5
-40
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ name: build
33
on:
44
pull_request:
55
push:
6-
branches:
7-
- main
8-
- release/*
6+
branches: [ main, develop, release/* ]
97

108
jobs:
119
build:

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
# main branch ensures that the PR only gets built once.
1414
on:
1515
push:
16-
branches: [ main ]
16+
branches: [ main, develop, release/* ]
1717
pull_request:
1818
# If new code is pushed to a PR branch, then cancel in progress workflows for
1919
# that PR. Ensures that we don't waste CI time, and returns results quicker.

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ permissions:
33
contents: read
44
on:
55
push:
6-
branches: [ main ]
6+
branches: [ main, develop, release/* ]
77
paths-ignore:
88
- "**.ts"
99
pull_request:

.github/workflows/generate-files.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ name: Generated Files are Updated
22
on:
33
merge_group:
44
pull_request:
5-
branches:
6-
- "*"
5+
branches: [ main, develop, release/* ]
76

87
jobs:
98
build:

.github/workflows/nostd.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: test
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ main, develop, release/* ]
66
pull_request:
77

88
jobs:

0 commit comments

Comments
 (0)