Skip to content

refactor(server): more annotations, minor refactor, and printing with… #44

refactor(server): more annotations, minor refactor, and printing with…

refactor(server): more annotations, minor refactor, and printing with… #44

Workflow file for this run

name: Assign
on:
issue_comment:
types: created
permissions:
contents: read
jobs:
issue_assign:
issues: write
pull-requests: write
runs-on: ubuntu-latest

Check failure on line 13 in .github/workflows/assign.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/assign.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
steps:
- if: github.event.comment.body == 'take'
run: |
echo "Assigning issue ${{ github.event.issue.number }} to ${{ github.event.comment.user.login }}"
curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -d '{"assignees": ["${{ github.event.comment.user.login }}"]}' https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/assignees