You've already forked DNZHRecomp
mirror of
https://github.com/izzy2lost/DNZHRecomp.git
synced 2026-03-10 11:36:25 -07:00
* 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
19 lines
566 B
YAML
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 }} |