summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsr55 <[email protected]>2019-11-15 21:47:22 +0000
committerScott <[email protected]>2019-11-15 22:14:47 +0000
commite675415cdd350a28110ecb77043fc82ca86ed684 (patch)
tree07cf59ab4596b40fd405c00d247312313b599f8f
parent672acfece33ca0301e2b1fa5e4c1f6c4ece8268c (diff)
actions: Limit the builds to our main repo for now.
-rw-r--r--.github/workflows/linux.yml2
-rw-r--r--.github/workflows/mac.yml2
-rw-r--r--.github/workflows/windows.yml2
3 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index 23c44f2d7..1cdf32a11 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -6,7 +6,7 @@ jobs:
build:
name: Build on Ubuntu
runs-on: ubuntu-latest
-
+ if: github.repository == 'HandBrake/HandBrake'
steps:
- uses: actions/checkout@master
diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml
index 342806cd6..eaf512ed7 100644
--- a/.github/workflows/mac.yml
+++ b/.github/workflows/mac.yml
@@ -6,7 +6,7 @@ jobs:
build:
name: Build on macOS
runs-on: macOS-latest
-
+ if: github.repository == 'HandBrake/HandBrake'
steps:
- uses: actions/checkout@master
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 54dfe5e0e..9d340718c 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -6,6 +6,7 @@ jobs:
build_mingw:
name: CLI / LibHB
runs-on: ubuntu-latest
+ if: github.repository == 'HandBrake/HandBrake'
steps:
- uses: actions/checkout@master
@@ -45,6 +46,7 @@ jobs:
build_gui:
name: Windows UI
runs-on: windows-latest
+ if: github.repository == 'HandBrake/HandBrake'
needs: build_mingw
steps:
- uses: actions/checkout@master