-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
action.yml
34 lines (34 loc) · 1.34 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
name: 'Support Requests'
description: 'Comment on and close issues labeled as support requests'
author: 'Armin Sebastian'
inputs:
github-token:
description: 'GitHub access token'
default: '${{ github.token }}'
support-label:
description: 'Label used to mark issues as support requests'
default: 'support'
issue-comment:
description: 'Comment to post on issues marked as support requests, `{issue-author}` is an optional placeholder'
default: >
:wave: @{issue-author}, we use the issue tracker exclusively for bug reports
and feature requests. However, this issue appears to be a support request.
Please use our support channels to get help with the project.
close-issue:
description: 'Close issues marked as support requests, value must be either `true` or `false`'
default: true
issue-close-reason:
description: 'Reason for closing issues, value must be either `completed` or `not planned`'
default: 'not planned'
lock-issue:
description: Lock issues marked as support requests, value must be either `true` or `false`'
default: false
issue-lock-reason:
description: 'Reason for locking issues, value must be one of `resolved`, `off-topic`, `too heated` or `spam`'
default: 'off-topic'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'help-circle'
color: 'purple'