Browse Source

Avoid duplicate builds by only allowing pull_request builds from forks. (#1498)

pull/1499/head
josetr 5 years ago committed by GitHub
parent
commit
11338c9eb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      .github/workflows/main.yml

1
.github/workflows/main.yml

@ -4,6 +4,7 @@ on: [push, pull_request] @@ -4,6 +4,7 @@ on: [push, pull_request]
jobs:
job:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
fail-fast: false
matrix:

Loading…
Cancel
Save