ci: only run CI on push if it goes to main
This commit is contained in:
parent
26f256d6f8
commit
c5fac021e5
1 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,9 @@
|
|||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
check:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Reference in a new issue