Skip to content

Commit 50c241f

Browse files
authored
Fix yaml error in take issue command (#5946)
1 parent 392f9c2 commit 50c241f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/comment-commands.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,5 @@ jobs:
1717

1818
steps:
1919
# Using REST API and not `gh issue edit`. https://github.com/cli/cli/issues/6235#issuecomment-1243487651
20-
- run: curl \
21-
-H "Authorization: token ${{ github.token }}" \
22-
-d '{"assignees": ["${{ github.event.comment.user.login }}"]}' \
23-
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/assignees
20+
- run: |
21+
curl -H "Authorization: token ${{ github.token }}" -d '{"assignees": ["${{ github.event.comment.user.login }}"]}' https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/assignees

0 commit comments

Comments
 (0)