A GitHub Action to move iced issues with new comments back to triage. Inspired by alex-page/github-project-automation-plus
Required The GitHub token used to add issues and prs to projects.
No outputs.
Create a workflow file in your GitHub repository:
.github/workflows/re-triage.yml
Include in it the action configuration:
on:
issue_comment:
types: [created]
jobs:
re-triage:
runs-on: ubuntu-latest
name: Re-triage issues with new comments
steps:
- uses: honeycombio/oss-management-actions/re-triage@v1
with:
ghprojects-token: ${{ secrets.GHPROJECTS_TOKEN }}