-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
45 lines (45 loc) · 1.37 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: 'Handle stale discussions'
description: 'Custom GH action on discussions'
runs:
using: 'node16'
main: 'dist/index.js'
branding:
color: orange
icon: cloud
inputs:
attention-label:
description: 'Label to add to stale discussions'
required: false
github-token:
description: 'GitHub token'
required: false
days-until-stale:
description: 'Number of days of inactivity before a discussion is considered stale'
required: false
close-locked-discussions:
description: 'Close locked discussions'
required: false
close-answered-discussions:
description: 'Close answered discussions'
required: false
stale-response-text:
description: 'Comment to post when marking a discussion as stale'
required: false
instructions-response-text:
description: 'Comment to post when a proposed answer is given'
required: false
proposed-answer-keyword:
description: 'Keyword to use to indicate a proposed answer'
required: false
close-stale-as-answered:
description: 'Close stale discussions as answered'
required: false
github-bot:
description: 'Github action bot login name'
required: false
page-size:
description: 'Page size count for discussions to be loaded per page'
required: false
open-discussion-instructions-text:
description: 'Comment to post when a discussion is opened'
required: false