generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 8
/
action.yml
46 lines (46 loc) · 1.44 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: 'Dependabot Changelog Helper'
description: |
"Helps keep your repository uo-to-date when Dependabot updates your dependencies."
author: '@dangoslen'
inputs:
version:
description: |
"The version to find in the CHANGELOG to add dependabot entries to"
required: true
default: "UNRELEASED"
changelogPath:
description: |
"The path to the CHANGELOG file to add dependabot entries to"
required: true
default: './CHANGELOG.md'
activationLabel:
description: |
"DEPRECATED! Please use `activationLabels` instead. The label to indicate that the action should run"
required: true
default: ''
activationLabels:
description: |
"The labels to activate/run this action. Labels are comma-separated. Each label must be present on the pull request for the action to run."
required: true
default: 'dependabot'
entryPrefix:
description: |
"The prefix word (after the hyphen) of the changelog entry, for example: '- [entryPrefix] `dependency` from v1.0 to v2.0'"
required: true
default: 'Bump'
sectionHeader:
description: |
"The section header to add the changelog entry under"
required: true
default: 'Dependencies'
sort:
description: |
"How to sort dependency entries in the changelog. Possible values are: 'alpha', and 'none'"
required: true
default: 'none'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
color: green
icon: edit