From 8a7090f9a3e1fbc89adfd527b2b4c2493565c500 Mon Sep 17 00:00:00 2001 From: dcvz Date: Sat, 1 Jun 2024 23:11:36 +0200 Subject: [PATCH] test external too --- .github/workflows/validate_external.yml | 4 ++-- .github/workflows/validate_internal.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/validate_external.yml b/.github/workflows/validate_external.yml index 51628f3..271ab21 100644 --- a/.github/workflows/validate_external.yml +++ b/.github/workflows/validate_external.yml @@ -7,7 +7,7 @@ concurrency: cancel-in-progress: true jobs: authorize: - if: github.repository != github.event.pull_request.head.repo.full_name + # 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 && @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - run: echo ✓ - build: + external: needs: authorize uses: ./.github/workflows/validate.yml secrets: diff --git a/.github/workflows/validate_internal.yml b/.github/workflows/validate_internal.yml index 3ed7973..b7cce0c 100644 --- a/.github/workflows/validate_internal.yml +++ b/.github/workflows/validate_internal.yml @@ -9,7 +9,7 @@ concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: - build: + internal: if: github.repository == github.event.pull_request.head.repo.full_name uses: ./.github/workflows/validate.yml secrets: inherit