Skip to content

Commit

Permalink
chore: limit lint runs to master pushes and PRs (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
sabard committed Feb 27, 2023
1 parent e175f87 commit ba0597f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Lint

on: [push, pull_request]
on:
push:
branches:
- 'master'
pull_request:
branches:
- '*'

jobs:
build:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
pull_request:
branches:
- '*'

jobs:
test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit ba0597f

Please sign in to comment.