Skip to content

Commit eab38b3

Browse files
committed
chore: Update issue-assign workflow to use gh issue edit command for assigning issues
1 parent 6a2a3e8 commit eab38b3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/issue-assign.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,6 @@ jobs:
1414
env:
1515
GITHUB_TOKEN: ${{ github.token }}
1616
run: |
17-
gh issue assign "${{ github.event.issue.number }}" --assignee "${{ github.repository_owner }}"
17+
# https://docs.github.com/en/github-cli
18+
# https://cli.github.com/manual/gh_issue
19+
gh issue edit "${{ github.event.issue.number }}" --add-assignee "${{ github.repository_owner }}"

0 commit comments

Comments
 (0)