Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rob-derosa/stale-issue-reporter
https://github.com/rob-derosa/stale-issue-reporter
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rob-derosa/stale-issue-reporter
- Owner: rob-derosa
- License: mit
- Created: 2021-05-05T18:34:06.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-24T12:03:33.000Z (almost 2 years ago)
- Last Synced: 2024-10-07T15:15:31.468Z (3 months ago)
- Language: TypeScript
- Size: 1.47 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Stale Issue Reminder
Generates a gist report of stale issues. A stale issue is an assigned issue that is labeled and has not had a recent comment within the required threshold. For example, an issue with a `blocker` label is required to have the assignee(s) post a new comment every 14 days. We can optionally pass in a `buffer` parameter of `3` if we would like to include issues where the assignee(s) have not posted a comment within 11 days, giving the assignee(s) a bit more notice.
A URL of the new gist will be output and show in the log.
## Sample Usage
```yaml
name: 'Generate stale issues report'
on:
workflow_dispatch
jobs:
generate-report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./
name: "generate report of stale issues"
with:
labels: "blocker=14,critical=30,important=60"
buffer: 3
github-token: ${{ secrets.GIST_PAT }}
```## License
MIT