-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
42 lines (42 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
35
36
37
38
39
40
41
42
name: 'Deque Accessibility Issue Labeler'
description: 'Categorizes issues automatically for accessibility based on their creation date and existing issue labels'
author: 'Deque Systems, Inc.'
inputs:
repo-token:
description: 'The GITHUB_TOKEN secret'
required: true
default: ${{ github.token }}
label-a11y:
description: 'Label used to identify accessibility issues that should be categorized'
required: false
default: "A11Y"
label-blocker:
description: 'Label used to identify blocker issues'
required: false
default: "Blocker"
label-critical:
description: 'Label used to identify critical issues'
required: false
default: "Critical"
label-serious:
description: 'Label used to identify serious issues'
required: false
default: "Serious"
label-moderate:
description: 'Label used to identify moderate issues'
required: false
default: "Moderate"
label-production:
description: 'Label used to identify issues that exist in production'
required: false
default: "Production"
label-released:
description: 'Label used to identify issues that were introduced during the development of a release, but not fixed before the release was deployed'
required: false
default: "Released"
runs:
using: node20
main: dist/index.js
branding:
icon: 'activity'
color: 'blue'