Skip to content

Commit

Permalink
chore: only run push jobs on releasable branches (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey authored Nov 9, 2020
1 parent 988ad78 commit 32a4471
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
name: validate
on: [push, pull_request]
on:
push:
branches:
[
"+([0-9])?(.{+([0-9]),x}).x",
"master",
"next",
"next-major",
"beta",
"alpha",
]
pull_request: {}
jobs:
main:
strategy:
Expand Down

0 comments on commit 32a4471

Please sign in to comment.