Skip to content

Commit

Permalink
Debug wf.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthegeek committed Jul 28, 2024
1 parent 608c11f commit 3d42483
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pr-assign-command.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ on:
name: Commands

jobs:
describe:
env:
AUTHOR_ASS: ${{ github.event.comment.author_association }}
run: echo "$AUTHOR_ASS"
assign:
if: ${{ github.event.issue.pull_request && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER' || github.event.actor.login == 'jonthegeek') && startsWith(github.event.comment.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: assign
runs-on: ubuntu-latest
env:
Expand Down

0 comments on commit 3d42483

Please sign in to comment.