limit github actions to main branch

This commit is contained in:
Eric Seppanen
2021-04-28 12:29:01 -07:00
parent 61aee52a90
commit 69df9f10ed
2 changed files with 9 additions and 3 deletions

View File

@@ -1,6 +1,8 @@
name: regression check
name: Send Notifications
on: [push]
on:
push:
branches: [ main ]
jobs:
send-notifications:

View File

@@ -1,6 +1,10 @@
name: Build and Test
on: [push, pull_request]
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
regression-check: