Skip to content

Commit

Permalink
Merge.
Browse files Browse the repository at this point in the history
Merge commit '2d14844d98df4254cb00ef0f81c767ad89d04fda'

#Conflicts:
#	.github/workflows/pr-assign-command.yaml
  • Loading branch information
jonthegeek committed Jul 28, 2024
2 parents 8025791 + 2d14844 commit b32b7be
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/pr-assign-command.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,17 @@ name: Commands

jobs:
describe:
env:
AUTHOR_ASS: ${{ github.event.comment.author_association }}
steps:
- run: echo "$AUTHOR_ASS"
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: assign
Expand Down

0 comments on commit b32b7be

Please sign in to comment.