-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
23 lines (23 loc) · 866 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: 'Stale Issue Report Generator'
description: 'Generates a gist report of open, stale issues that have not had a new comment posted within a specified daily threshold'
author: '[email protected]'
branding:
icon: alert-triangle
color: red
inputs:
labels:
required: true
description: 'A comma delimited list of labels with amount of days (i.e. blocker=14,critical=30,important=60)'
buffer:
required: false
description: 'The amount of days prior to the assigned label cutoff (i.e. a value of 3 would include blocker issues with no new comments within the last 11 days instead of 14)'
default: '0'
github-token:
required: true
description: 'A PAT that has the ability to read repos and post gists'
outputs:
report-url:
description: 'A url to the generated gist report'
runs:
using: 'node12'
main: 'dist/index.js'