Skip to content
This repository has been archived by the owner on Jan 6, 2021. It is now read-only.

chore: only run push jobs on releasable branches #253

Merged
merged 1 commit into from Nov 9, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/validate.yml
@@ -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