Skip to content

Commit d98dbad

Browse files
committed
chore(github): Run some workflows on features/** and release-** branches.
This patch updates a couple of workflows to run on the `features/**` and the `release-**` branches. Note that for `coverage`, we purposely exclude `release-**` as it often breaks and don't want to break the release process.
1 parent 6a33b94 commit d98dbad

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/bindings_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Bindings tests
33
on:
44
workflow_dispatch:
55
push:
6-
branches: [main]
6+
branches: ["main", "features/**", "release-**"]
77
pull_request:
8-
branches: [main]
8+
branches: ["main", "features/**", "release-**"]
99
types:
1010
- opened
1111
- reopened

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Rust tests
33
on:
44
workflow_dispatch:
55
push:
6-
branches: [main]
6+
branches: ["main", "features/**", "release-**"]
77
pull_request:
8-
branches: [main]
8+
branches: ["main", "features/**", "release-**"]
99

1010
permissions: {}
1111

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Code Coverage
22

33
on:
44
push:
5-
branches: [main]
5+
branches: ["main", "features/**"]
66
pull_request:
7-
branches: [main]
7+
branches: ["main", "features/**"]
88

99
permissions: {}
1010

.github/workflows/detect-long-path.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Detect long path among changed files
66
on:
77
workflow_dispatch:
88
pull_request: # focus on the changed files in current PR
9-
branches: [main]
9+
branches: ["main", "features/**", "release-**"]
1010

1111
permissions: {}
1212

.github/workflows/msrv.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Rust version
33
on:
44
workflow_dispatch:
55
push:
6-
branches: [main]
6+
branches: ["main", "features/**", "release-**"]
77
pull_request:
8-
branches: [main]
8+
branches: ["main", "features/**", "release-**"]
99

1010
permissions: {}
1111

0 commit comments

Comments
 (0)