-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
44 lines (41 loc) · 1.08 KB
/
action.yml
File metadata and controls
44 lines (41 loc) · 1.08 KB
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
44
name: IssueOps Label Manager
description: Manage labels for issues and pull requests
author: Nick Alteen
branding:
icon: check-square
color: blue
inputs:
action:
description: The action to take
required: false
default: add
api_url:
description: The GitHub API URL to use
required: false
default: ${{ github.api_url }}
create:
description: Create the label(s) if not present
required: false
default: 'false'
github_token:
description: The GitHub API token to use
required: false
default: ${{ github.token }}
labels:
description: A line-separated list of labels to add or remove
required: false
label_patterns:
description: A line-separated list of patterns to match when removing labels
required: false
issue_number:
description: The issue or PR number
required: true
default:
${{ github.event.issue.number || github.event.pull_request.number }}
repository:
description: The repository to use
required: false
default: ${{ github.repository }}
runs:
using: node24
main: dist/index.js