Skip to content

Commit 0aa67b6

Browse files
ci: change triggers to prevent dual runs on prs
* runs on pushes to master or prs to master * will prevent action from running for the push in pr and pull request into master
1 parent 212cae3 commit 0aa67b6

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.github/workflows/codespell.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ name: Codespell
44

55
on:
66
pull_request:
7+
branches:
8+
- master
79
push:
10+
branches:
11+
- master
812

913
permissions:
1014
contents: read

.github/workflows/lint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ name: Lints
22

33
on:
44
pull_request:
5+
branches:
6+
- master
57
push:
8+
branches:
9+
- master
610
paths-ignore:
711
- '**.rst'
812

.github/workflows/tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ name: Tests
22

33
on:
44
pull_request:
5+
branches:
6+
- master
57
push:
8+
branches:
9+
- master
610
paths-ignore:
711
- '**.rst'
812

0 commit comments

Comments
 (0)