Skip to content

Latest commit

 

History

History

re-triage

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Honeycomb Project Management: re-triage issues

A GitHub Action to move iced issues with new comments back to triage. Inspired by alex-page/github-project-automation-plus

Inputs

ghprojects-token

Required The GitHub token used to add issues and prs to projects.

Outputs

No outputs.

Example usage

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 }}