Skip to content

Commit 07619a8

Browse files
committed
run ci on main branch as well
1 parent 3cbf9a9 commit 07619a8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
# built once.
1414
on:
1515
push:
16-
branches: [master]
16+
branches: [master, main]
1717
pull_request:
1818
# If new code is pushed to a PR branch, then cancel in progress workflows for that PR. Ensures that
1919
# we don't waste CI time, and returns results quicker https://github.com/jonhoo/rust-ci-conf/pull/5

.github/workflows/safety.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
contents: read
99
on:
1010
push:
11-
branches: [master]
11+
branches: [master, main]
1212
pull_request:
1313
concurrency:
1414
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/scheduled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permissions:
55
contents: read
66
on:
77
push:
8-
branches: [master]
8+
branches: [master, main]
99
pull_request:
1010
schedule:
1111
- cron: '7 7 * * *'

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
contents: read
1010
on:
1111
push:
12-
branches: [master]
12+
branches: [master, main]
1313
pull_request:
1414
concurrency:
1515
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ permissions:
22
contents: read
33
on:
44
push:
5-
branches: [master]
5+
branches: [master, main]
66
pull_request:
77
concurrency:
88
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

0 commit comments

Comments
 (0)