Auto-assign issue on /attempt comment #6
This file contains 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: Auto-assign issue on /attempt comment | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
auto-assign: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const comment = context.payload.comment; | |
const issue = context.issue; | |
const owner = "abbhiishek"; | |
const repo = "campus-connect" | |
if (comment.body.startsWith('/attempt')) { | |
if (!issue.assignee) { | |
await github.rest.issues.addAssignees({ | |
owner, | |
repo, | |
issue_number: issue.number, | |
assignees: [comment.user.login] | |
}); | |
await github.rest.issues.createComment({ | |
owner, | |
repo, | |
issue_number: issue.number, | |
body: 'Assigned the issue to you!' | |
}); | |
} else { | |
await github.rest.issues.createComment({ | |
owner, | |
repo, | |
issue_number: issue.number, | |
body: 'This issue is already assigned. Tag a maintainer if you need to take over.' | |
}); | |
} | |
} |