From 794c09a0b24f801ef3c4ec49ae4c9532c6e1a1fe Mon Sep 17 00:00:00 2001 From: bpolania Date: Wed, 4 Dec 2024 16:04:52 -0800 Subject: [PATCH] Debugging --- .github/workflows/pr-external.yaml | 2 +- .github/workflows/pr-internal.yml | 11 ++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-external.yaml b/.github/workflows/pr-external.yaml index b4588682..c9ea7751 100644 --- a/.github/workflows/pr-external.yaml +++ b/.github/workflows/pr-external.yaml @@ -21,7 +21,7 @@ jobs: Timestamp_PR_APPROVED: needs: [authorize] uses: storyprotocol/gha-workflows/.github/workflows/reusable-timestamp.yml@main - + build_and_test: needs: [authorize, Timestamp_PR_APPROVED] uses: storyprotocol/gha-workflows/.github/workflows/reusable-build-unit-test-workflow.yml@origin/bpolania/workflows diff --git a/.github/workflows/pr-internal.yml b/.github/workflows/pr-internal.yml index a4091e02..a09b4000 100644 --- a/.github/workflows/pr-internal.yml +++ b/.github/workflows/pr-internal.yml @@ -13,10 +13,19 @@ jobs: Timestamp: if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} uses: storyprotocol/gha-workflows/.github/workflows/reusable-timestamp.yml@main - + + debug_sha: + needs: [Timestamp] + runs-on: ubuntu-latest + steps: + - run: | + echo SHA: ${{ github.event.pull_request.head.sha }} + build_and_test: needs: [Timestamp] uses: storyprotocol/gha-workflows/.github/workflows/reusable-build-unit-test-workflow.yml@origin/bpolania/workflows with: sha: ${{ github.event.pull_request.head.sha }} ENVIRONMENT: "odyssey" + +