Skip to content

Commit ba0597f

Browse files
authored
chore: limit lint runs to master pushes and PRs (#382)
1 parent e175f87 commit ba0597f

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Diff for: .github/workflows/lint.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: Lint
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- 'master'
7+
pull_request:
8+
branches:
9+
- '*'
410

511
jobs:
612
build:

Diff for: .github/workflows/tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
pull_request:
88
branches:
99
- '*'
10+
1011
jobs:
1112
test:
1213
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)