diff --git a/.github/workflows/debug-pr-tarball.yml b/.github/workflows/debug-pr-tarball.yml new file mode 100644 index 00000000..42ec1a3d --- /dev/null +++ b/.github/workflows/debug-pr-tarball.yml @@ -0,0 +1,17 @@ +name: Debug PR Tarball Condition +on: + pull_request: + branches: [main] + pull_request_target: + branches: [main] + +jobs: + debug: + runs-on: ubuntu-latest + steps: + - name: Print author_association + run: | + echo "author_association: ${{ github.event.pull_request.author_association }}" + echo "author: ${{ github.event.pull_request.user.login }}" + echo "event_name: ${{ github.event_name }}" + echo "action: ${{ github.event.action }}"