Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/capdiem/needs-triage

Add or remove the 'needs triage' label automatically
https://github.com/capdiem/needs-triage

Last synced: 26 days ago
JSON representation

Add or remove the 'needs triage' label automatically

Awesome Lists containing this project

README

        

# Needs triage

This Needs triage action automatically adds a 'Needs triage' tag to the newly opened issue.

## Creating

add a file to `.github/workflows/needs-triage.yml`

```yml
name: needs triage
on:
issues:
types: [opened, labeled]
jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: capdiem/[email protected]
with:
repoToken: ${{ secrets.GITHUB_TOKEN }}
eventType: ${{ github.event.action }}
labelName: 'Needs triage'
secondsUtilLabel: 60,
goodFirstIssue: true
```

## Inputs

| Name | Description | Required | Default |
| ---------------- | ---------------------------------------------- | -------- | -------------- |
| repoToken | Github token for the repository | true | - |
| eventType | The activity type of current event | true | - |
| labelName | Name to be added as the triage | false | 'Needs triage' |
| secondsUtilLabel | Number of seconds before being added as triage | false | 60 |
| goodsFirstIssue | Add "good first issue" for newcomeres | false | false |