diff options
author | Scott <[email protected]> | 2019-11-15 21:56:05 +0000 |
---|---|---|
committer | Scott <[email protected]> | 2019-11-15 22:14:47 +0000 |
commit | cfbc799ba1896396d80e759ec8705ef55308f104 (patch) | |
tree | 276cb35ac4029f77fa31ce720462122005916b61 /.github | |
parent | e675415cdd350a28110ecb77043fc82ca86ed684 (diff) |
Testing if we can handle forks better with actions
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 1cdf32a11..7e8baf71d 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -3,6 +3,16 @@ name: Linux Build on: [push, pull_request] jobs: + + handle_forks: + name: Forked Repo + runs-on: ubuntu-latest + if: github.repository != 'HandBrake/HandBrake' + steps: + - name: Print Warning + run: | + echo "Builds are disabled for forked repositories." + build: name: Build on Ubuntu runs-on: ubuntu-latest |