mirror of
https://github.com/chrisbenincasa/tunarr
synced 2026-04-21 13:37:15 +00:00
Attempt 1 at not having builds run twice on PRs
This commit is contained in:
parent
e2f94c2087
commit
dfd3bd2724
1 changed files with 4 additions and 1 deletions
|
|
@ -3,8 +3,11 @@ on:
|
|||
- pull_request
|
||||
|
||||
jobs:
|
||||
cache-and-install:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event_name != 'pull_request' ||
|
||||
github.event.pull_request.head.repo.full_name !=
|
||||
github.event.pull_request.base.repo.full_name
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
Loading…
Reference in a new issue