-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
30 lines (29 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
29
30
name: auto-label-stuff
description: 'Super Easy Action to Automatically Apply Labels on Issues and PRs based on config files.'
author: offensive-vk
branding:
icon: mail
color: gray-dark
inputs:
number:
description: "Works on a specific issue or pr number."
required: false
debug:
required: false
description: "Whether to enable Debug Mode or not."
github-token:
description: "Your GitHub token (PAT or `github.token`). Required to authenticate API requests."
required: false
create-labels:
description: "Set to true if the labels does not exist in the repository. If set to false, the action will not create the labels."
required: false
default: true
issue-config:
description: "Path to file where each label maps to an array of matching strings. File type: .yml, .yaml, .json."
required: false
pr-config:
description: "Path to file for labeling pull request based on file changes. Like labeler.yml but more simpler."
required: false
runs:
using: 'node20'
main: 'dist/index.js'