forked from andymckay/labeler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
28 lines (28 loc) · 1.03 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
name: 'Simple Issue Labeler'
description: 'Adds and removes labels from issues.'
inputs:
repo-token:
description: 'The GitHub token'
required: false
default: ${{ github.token }}
add-labels:
description: 'Labels to add to an issue, seperated by commas.'
required: false
remove-labels:
description: 'Labels to be removed from an issue, seperated by commas.'
required: false
ignore-if-assigned:
description: "True/False value to indicate if no labels should be added or removed if there is an assignee to the issue."
required: false
ignore-if-labeled:
description: "True/False value to indicate if no labels should be added or removed if the issue already has labels."
required: false
issue-number:
description: "An issue number or PR number or project card number. Optional, if not specified, will use the one available in github event `github.event.pull_request` or `github.event.issue`"
required: false
branding:
icon: zap-off
color: orange
runs:
using: 'node12'
main: 'label.js'