diff options
-rw-r--r-- | .github/workflows/linux.yml | 2 | ||||
-rw-r--r-- | .github/workflows/mac.yml | 2 | ||||
-rw-r--r-- | .github/workflows/windows.yml | 2 |
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 |