📦 ci(.github): removed redundant workflows and edited auto comment f… #177
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
# .github/workflows/take.yml | |
name: Assign issue to contributor | |
on: | |
issue_comment: | |
jobs: | |
assign: | |
name: Take an issue | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: take the issue | |
uses: bdougie/[email protected] | |
with: | |
issueCurrentlyAssignedMessage: Thanks for being interested in this issue. It looks like this ticket is already assigned to a contributor. | |
blockingLabels: needs triage,blocked,core team work,needs design,duplicate | |
blockingLabelsMessage: The issue you are trying to assign yourself is blocked until it can be triaged by a maintainer. | |
trigger: .take | |
token: ${{ secrets.GH_PAT }} |