ci(workflow): don't run jobs twice on PRs (#640)
This commit is contained in:
parent
0f871f26d8
commit
b4cbb54320
1 changed files with 8 additions and 1 deletions
9
.github/workflows/push.yml
vendored
9
.github/workflows/push.yml
vendored
|
@ -1,4 +1,11 @@
|
|||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
name: Lint
|
||||
jobs:
|
||||
shellcheck:
|
||||
|
|
Loading…
Reference in a new issue