Skip to content

Commit

Permalink
Add debugging data. (#714)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthegeek authored Jul 28, 2024
1 parent d7058f3 commit 2d14844
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/pr-assign-command.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,19 @@ on:
name: Commands

jobs:
describe:
steps:
- name: print author association
env:
AUTHOR_ASS: ${{ github.event.comment.author_association }}
run: echo "$AUTHOR_ASS"
- name: print body
env:
BODY: ${{ github.event.comment.body }}
run: echo "$BODY"
assign:
if: ${{ github.event.issue.pull_request && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER') && startsWith(github.event.comment.body, '/assign') }}
name: document
name: assign
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 2d14844

Please sign in to comment.