Don't run actions on some events

push(master) is not run because they would be run on staging anyway.

pull_request(staging, trying) are not run because pull requests shouldn't be made to them
This commit is contained in:
Pavan Kumar Sunkara 2020-04-10 19:50:12 +02:00 committed by GitHub
parent 3b16d812b6
commit 510f4cc055
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,9 @@
name: Linux
on:
push:
branches: [master, staging, trying]
branches: [staging, trying]
pull_request:
branches: [master, staging, trying]
branches: [master]
types: [opened, reopened, synchronize]
jobs:
test-release: