Skip to content

Commit 1926d08

Browse files
authored
Merge pull request #1507 from EliahKagan/run-ci/ci-branches
Run CI on moderately more events
2 parents e2c747d + de555b2 commit 1926d08

File tree

4 files changed

+23
-10
lines changed

4 files changed

+23
-10
lines changed

.github/workflows/ci.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ env:
66

77
on:
88
push:
9-
branches: [ main ]
10-
tags-ignore: [ '*' ]
9+
branches:
10+
- main
11+
- 'run-ci/**'
12+
- '**/run-ci/**'
13+
tags-ignore:
14+
- '*'
1115
paths:
1216
- '.github/**'
1317
- 'ci/**'
@@ -19,7 +23,8 @@ on:
1923
- '*.toml'
2024
- Makefile
2125
pull_request:
22-
branches: [ main ]
26+
branches:
27+
- main
2328
paths:
2429
- '.github/**'
2530
- 'ci/**'
@@ -30,6 +35,7 @@ on:
3035
- 'gix*/**'
3136
- '*.toml'
3237
- Makefile
38+
workflow_dispatch:
3339

3440
jobs:
3541
pure-rust-build:

.github/workflows/cifuzz.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: CIFuzz
2-
on: [pull_request]
2+
on:
3+
pull_request:
4+
branches: [ main ]
5+
workflow_dispatch:
36
jobs:
47
Fuzzing:
58
runs-on: ubuntu-latest

.github/workflows/msrv.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
name: Minimum Supported Rust Version
22

33
on:
4-
# Trigger the workflow on push to master or any pull request
5-
# Ignore all tags
64
push:
7-
branches: [ main ]
8-
tags-ignore: [ '*' ]
5+
branches:
6+
- main
7+
- 'run-ci/**'
8+
- '**/run-ci/**'
9+
tags-ignore:
10+
- '*'
911
pull_request:
10-
branches: [ main ]
12+
branches:
13+
- main
14+
workflow_dispatch:
1115

1216
jobs:
1317
rustfmt:

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
name: release
55

66
on:
7-
workflow_dispatch:
87
push:
98
# Enable when testing release infrastructure on a branch.
109
# branches:
1110
# - fix-releases
1211
tags:
1312
- 'v*'
13+
workflow_dispatch:
1414

1515
defaults:
1616
run:

0 commit comments

Comments
 (0)