-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
action.yml
32 lines (30 loc) · 893 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
29
30
31
32
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
name: 'GitHub Labeler'
description: 'GitHub Action to manage labels on GitHub'
author: 'crazy-max'
branding:
color: 'orange'
icon: 'tag'
inputs:
yaml-file:
description: 'Path to YAML file containing labels definitions'
default: '.github/labels.yml'
required: false
skip-delete:
description: 'If enabled, labels will not be deleted if not found in YAML file'
default: 'false'
required: false
dry-run:
description: 'If enabled, changes will not be applied'
default: 'false'
required: false
exclude:
description: 'Newline-delimited list of labels pattern(s)/matcher to exclude'
required: false
github-token:
description: 'GitHub Token as provided by secrets'
default: ${{ github.token }}
required: true
runs:
using: 'node20'
main: 'dist/index.js'