mirror of
https://git.mihon.tech/mihonapp/mihon
synced 2024-11-22 05:05:38 +03:00
Only run build check workflow for pushes to dev or master branches
This commit is contained in:
parent
842295348e
commit
e637f22540
1 changed files with 6 additions and 1 deletions
7
.github/workflows/build_check.yml
vendored
7
.github/workflows/build_check.yml
vendored
|
@ -1,5 +1,10 @@
|
|||
name: Build check
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- dev
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
Loading…
Reference in a new issue