Skip to content

Commit

Permalink
debugging source repo access (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
jordangov authored Jul 7, 2024
1 parent a6167f6 commit 124b9fe
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/hero-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
- name: Checkout Source
uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
path: source

- name: Check Submission
Expand All @@ -32,6 +34,9 @@ jobs:
ls -l;
cat source/open-source-heroes.md;
cat target/open-source-heroes.md;
echo "repository? ${{ github.event.pull_request.head.repo.full_name }} or ${{ github.event.pull_request.base.repo.full_name }} or ${{ github.event.pull_request.repository }}";
echo "ref? ${{ github.event.pull_request.head.ref }} or ${{ github.event.pull_request.base.ref }}";
diff target/open-source-heroes.md source/open-source-heroes.md || true;
Expand Down

0 comments on commit 124b9fe

Please sign in to comment.