Skip to content

Allow non-contributors to take an issue with .take (#377) #1

Allow non-contributors to take an issue with .take (#377)

Allow non-contributors to take an issue with .take (#377) #1

Workflow file for this run

# .github/workflows/take.yml
name: Assign issue to contributor
on:
issue_comment:

Check failure on line 4 in .github/workflows/take.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/take.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
types: [created, edited] // action runs on new and edited issue comments
jobs:
assign:
name: Take an issue
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: take the issue
uses: bdougie/take-action@main
with:
message: Thanks for taking this issue! Let us know if you have any questions!
trigger: .take
token: ${{ secrets.GITHUB_TOKEN }}