Skip to content

Commit 1db46ae

Browse files
committed
CI: Run checks for PRs to any branch
There isn't really any good reason to restrict PR CI to specific branches. Allowing all will let us to cooperate on some longer-lived branches.
1 parent bceac6a commit 1db46ae

File tree

7 files changed

+7
-15
lines changed

7 files changed

+7
-15
lines changed

.github/workflows/authenticate_test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ on:
77
- 'branch-*'
88
pull_request:
99
branches:
10-
- main
11-
- 'branch-*'
10+
- '**'
1211

1312
env:
1413
CARGO_TERM_COLOR: always

.github/workflows/book.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ on:
88
- 'branch-*'
99
pull_request:
1010
branches:
11-
- main
12-
- 'branch-*'
11+
- '**'
1312

1413
env:
1514
CARGO_TERM_COLOR: always

.github/workflows/cassandra.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ on:
88
- 'branch-*'
99
pull_request:
1010
branches:
11-
- main
12-
- 'branch-*'
11+
- '**'
1312

1413
env:
1514
CARGO_TERM_COLOR: always

.github/workflows/rust.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ on:
77
- 'branch-*'
88
pull_request:
99
branches:
10-
- main
11-
- 'branch-*'
10+
- '**'
1211

1312
env:
1413
CARGO_TERM_COLOR: always

.github/workflows/semver_checks.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ name: Semver checks
55
on:
66
pull_request_target:
77
branches:
8-
- main
9-
- 'branch-*'
8+
- '**'
109
push:
1110
tags:
1211
- v*.*.*

.github/workflows/serverless.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ on:
77
- 'branch-*'
88
pull_request:
99
branches:
10-
- main
11-
- 'branch-*'
12-
10+
- '**'
1311
env:
1412
CARGO_TERM_COLOR: always
1513
RUST_BACKTRACE: full

.github/workflows/tls.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ on:
77
- 'branch-*'
88
pull_request:
99
branches:
10-
- main
11-
- 'branch-*'
10+
- '**'
1211

1312
env:
1413
CARGO_TERM_COLOR: always

0 commit comments

Comments
 (0)