Skip to content

Commit

Permalink
debugging the system-file-changes workflow for detecting PRs from fork
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbe committed Mar 25, 2021
1 parent 79f5060 commit 3b71ff8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/system-file-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,13 @@ jobs:
# how to actually works. We need to test what happens when
# PRs on forks come in that edit any of these files.
# exit 1
- name: Repositories
run: |
echo "Base: ${{ github.event.pull_request.base.repo.full_name }}"
echo "Head: ${{ github.event.pull_request.head.repo.full_name }}"
echo "Repo: ${{ github.repository }}"
- name: Running on a fork?
if: github.event.pull_request.head.repo.full_name != github.repository
run: |
Expand Down

0 comments on commit 3b71ff8

Please sign in to comment.