Files
DNZHRecomp/.github/workflows/validate-external.yml
Alejandro Asenjo Nitti 205a7f5293 CI Workflows (#2)
* CI Implementation setup

* update rom name

* update rom name (aspMain.us.toml)

* update recompsyms

* Set execute bit for appimage.sh

* Set execute bit for ld64
2025-10-25 01:07:02 -03:00

19 lines
566 B
YAML

name: validate-external
on:
pull_request_target:
types: [opened, synchronize]
jobs:
authorize:
if: github.repository != github.event.pull_request.head.repo.full_name
environment:
${{ github.event_name == 'pull_request_target' &&
github.event.pull_request.head.repo.full_name != github.repository &&
'external' || 'internal' }}
runs-on: ubuntu-latest
steps:
- run: echo ✓
build:
needs: authorize
uses: ./.github/workflows/validate.yml
secrets:
DNZH_REPO_WITH_PAT: ${{ secrets.DNZH_REPO_WITH_PAT }}