Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions .github/workflows/build-for-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ env:
jobs:
build-linux-for-pr:
runs-on: ubuntu-22.04
if: ${{ github.event.label.name == 'Build Apps for PR' }}
if: >-
github.event.label.name == 'Build Apps for PR' &&
github.event.pull_request.head.repo.full_name == github.repository
steps:
- name: ci/checkout-repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down Expand Up @@ -49,7 +51,9 @@ jobs:

windows-install-deps:
runs-on: windows-2022
if: ${{ github.event.label.name == 'Build Apps for PR' }}
if: >-
github.event.label.name == 'Build Apps for PR' &&
github.event.pull_request.head.repo.full_name == github.repository
steps:
- name: ci/checkout-repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down Expand Up @@ -79,7 +83,9 @@ jobs:

build-win-for-pr:
runs-on: windows-2022
if: ${{ github.event.label.name == 'Build Apps for PR' }}
if: >-
github.event.label.name == 'Build Apps for PR' &&
github.event.pull_request.head.repo.full_name == github.repository
needs:
- windows-install-deps
steps:
Expand Down Expand Up @@ -140,7 +146,9 @@ jobs:
env:
MACOS_NOTIFICATION_STATE_NO_SDK_CHECK: true
CI_MAC_ZIP_ONLY: true
if: ${{ github.event.label.name == 'Build Apps for PR' }}
if: >-
github.event.label.name == 'Build Apps for PR' &&
github.event.pull_request.head.repo.full_name == github.repository
steps:
- name: ci/checkout-repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
Loading