CI Workflows. (#73)

This commit is contained in:
Darío
2026-01-24 15:33:06 -03:00
committed by GitHub
parent 5d0d15e9a3
commit 5ec2d3e5c2
12 changed files with 823 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
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:
ZRE_REPO_WITH_PAT: ${{ secrets.ZRE_REPO_WITH_PAT }}