Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
bpolania committed Dec 5, 2024
1 parent 9b1dc40 commit 794c09a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-external.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/pr-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"


0 comments on commit 794c09a

Please sign in to comment.