UnleashedRecomp/.github/workflows/validate-internal.yml
2025-04-30 21:39:37 -04:00

19 lines
481 B
YAML

name: validate-internal
on:
push:
branches:
- main
pull_request:
branches:
- main
types: [edited, opened, synchronize]
jobs:
build:
if: github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name
uses: ./.github/workflows/validate.yml
secrets: inherit
steps:
- name: Checkout PR branch
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}