Skip to content

Commit

Permalink
Merge pull request #27 from rwjblue/avoid-push-runs-for-prs
Browse files Browse the repository at this point in the history
Avoid running CI for "pushes" on pull requests.
  • Loading branch information
rwjblue authored Apr 1, 2020
2 parents 5cdfac0 + 1997d20 commit b8cf2dd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: CI

on: [push, pull_request]
on:
pull_request:
push:
branches:
- master
tags:
- '*'

jobs:
build:
Expand Down

0 comments on commit b8cf2dd

Please sign in to comment.