Fix int respect sys.set_int_max_str_digits
value
#245
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Comment Commands | |
on: | |
issue_comment: | |
types: created | |
jobs: | |
issue_assign: | |
if: (!github.event.issue.pull_request) && github.event.comment.body == 'take' | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.actor }}-issue-assign | |
permissions: | |
issues: write | |
steps: | |
# Using REST API and not `gh issue edit`. https://github.com/cli/cli/issues/6235#issuecomment-1243487651 | |
- run: | | |
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 |