Only run Verify workflow on push against develop and master branches (#10883)
This commit is contained in:
parent
0ffa274973
commit
efac599e0c
1 changed files with 6 additions and 1 deletions
7
.github/workflows/verify.yml
vendored
7
.github/workflows/verify.yml
vendored
|
@ -1,5 +1,10 @@
|
|||
name: Verify Source
|
||||
on: [pull_request, push]
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- develop
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
Loading…
Reference in a new issue