mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
Don't run duplicate CI tasks on every PR
The "pull_request" action already runs on pushes to any branch with an open PR, so only run the "push" action on the "master" branch.
This commit is contained in:
parent
96ef5cc182
commit
7e4b425ea3
1 changed files with 5 additions and 1 deletions
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
|
|
@ -1,6 +1,10 @@
|
|||
name: Test
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
|||
Loading…
Reference in a new issue