Browse Source

Only run build check workflow for pushes to dev or master branches

arkon 4 years ago
parent
commit
e637f22540
1 changed files with 6 additions and 1 deletions
  1. 6 1
      .github/workflows/build_check.yml

+ 6 - 1
.github/workflows/build_check.yml

@@ -1,5 +1,10 @@
 name: Build check
-on: [push, pull_request]
+on:
+  push:
+    branches:
+      - dev
+      - master
+  pull_request:
 
 jobs:
   build: