forked from actions-ecosystem/action-remove-labels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
28 lines (28 loc) · 844 Bytes
/
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: Actions Ecosystem Remove Labels
description: Remove labels to an issue or a pull request.
author: The Actions Ecosystem Authors
inputs:
github_token:
description: A GitHub token.
required: false
default: ${{ github.token }}
labels:
description: The labels' name to be removed. Must be separated with line breaks if there're multiple labels.
required: true
repo:
description: The owner and repository name. e.g.) Codertocat/Hello-World
required: false
default: ${{ github.repository }}
number:
description: The number of the issue or pull request.
required: false
fail_on_error:
description: Whether the action fails or not when getting errors. [true,false]
default: 'false'
required: false
runs:
using: node20
main: dist/index.js
branding:
icon: bookmark
color: green