summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorScott <[email protected]>2019-11-15 21:56:05 +0000
committerScott <[email protected]>2019-11-15 22:14:47 +0000
commitcfbc799ba1896396d80e759ec8705ef55308f104 (patch)
tree276cb35ac4029f77fa31ce720462122005916b61 /.github
parente675415cdd350a28110ecb77043fc82ca86ed684 (diff)
Testing if we can handle forks better with actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux.yml10
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