-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
action.yml
43 lines (38 loc) · 1.12 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
name: Auto card labeler
description: GitHub actions that automatically labels Issues or PullRequests based on project card moves.
author: technote-space
inputs:
GITHUB_TOKEN:
description: Secret GitHub API token to use for making API requests.
default: ${{ github.token }}
required: false
CONFIG_FILENAME:
description: Config file name.
default: 'card-labeler.yml'
required: false
SEARCH_PROJECT_BY_REGEXP:
description: Whether to search project name by regular expression.
default: ''
required: false
SEARCH_PROJECT_REGEXP_FLAGS:
description: RegExp flags for project.
default: ''
required: false
SEARCH_COLUMN_BY_REGEXP:
description: Whether to search column name by regular expression.
default: ''
required: false
SEARCH_COLUMN_REGEXP_FLAGS:
description: RegExp flags for project.
default: ''
required: false
PROJECT_CONFIG_IS_REQUIRED:
description: Whether to throw an error if the project's configuration is not found.
default: 'false'
required: false
branding:
icon: 'tag'
color: 'blue'
runs:
using: node16
main: lib/main.js