Skip to content

Commit 6386557

Browse files
🤖 config(ci): Only run GHA workflows once on PRs.
These changes were automatically generated by a transform whose code can be found at: - https://github.com/make-github-pseudonymous-again/rejuvenate/blob/31b7e48f29789fa2e2ad9e16013ff277c3bbca57/src/transforms/ci:only-run-gha-once-on-prs.js Please contact the author of the transform if you believe there was an error.
1 parent 5b473c6 commit 6386557

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

.github/workflows/ci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: ci
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
branches:
6+
main
7+
pull_request:
68

79
jobs:
810

.github/workflows/ci:cover.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: ci:cover
22
on:
3-
- push
4-
- pull_request
3+
push:
4+
branches:
5+
main
6+
pull_request:
57
jobs:
68
cover:
79
name: Continuous integration (code coverage)

.github/workflows/ci:lint-config.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: ci:lint-config
22
on:
3-
- push
4-
- pull_request
3+
push:
4+
branches:
5+
main
6+
pull_request:
57
jobs:
68
cover:
79
name: Continuous integration (config linting)

.github/workflows/ci:lint.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: ci:lint
22
on:
3-
- push
4-
- pull_request
3+
push:
4+
branches:
5+
main
6+
pull_request:
57
jobs:
68
cover:
79
name: Continuous integration (code linting)

0 commit comments

Comments
 (0)