Skip to content

Commit

Permalink
Merge pull request #704 from embroider-build/avoid-double-running
Browse files Browse the repository at this point in the history
Avoid running CI jobs on both push and pull_request events.
  • Loading branch information
thoov authored Mar 2, 2021
2 parents 676de0a + 7b041e5 commit c095674
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: CI

on: [push, pull_request]
on:
push:
branches:
- master
- 'v*' # prior release branches (e.g. `v0.30.x` branch)
tags:
- 'v*'
pull_request:
branches: [ master ]

jobs:
discover_matrix:
Expand Down

0 comments on commit c095674

Please sign in to comment.