-
Notifications
You must be signed in to change notification settings - Fork 15
/
action.yml
97 lines (76 loc) · 2.26 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
name: Auto Changelog
description: Automatic Changelog generator
author: Ardalan Amini
branding:
icon: clock
color: blue
inputs:
github-token:
description: Github token
required: true
default: ${{ github.token }}
commit-types:
description: Commit types
required: true
default: |
feat: New Features
fix: Bug Fixes
build: Build System & Dependencies
perf: Performance Improvements
docs: Documentation
test: Tests
refactor: Refactors
chore: Chores
ci: CI
style: Code Style
revert: Reverts
default-commit-type:
description: Default commit type to be used when the commit message matches none of the defined types
required: true
default: Other Changes
release-name:
description: Release name (version)
required: true
default: ${{ github.ref_name }}
release-name-prefix:
description: Release name (version) prefix
required: false
default: ""
mention-authors:
description: Mention the author of each commit
required: true
default: 'true'
mention-new-contributors:
description: Mention new contributors at the bottom of the changelog (New Contributors)
required: true
default: 'true'
include-compare-link:
description: Include GitHub compare at the bottom of the changelog (Full Changelog)
required: true
default: 'true'
include-pr-links:
description: Include GitHub pull request links at each log if applicable
required: true
default: 'true'
include-commit-links:
description: Include GitHub commit links at each log
required: true
default: 'true'
semver:
description: Enable semver based version comparison
required: true
default: 'true'
use-github-autolink:
description: Use GitHub Autolink
required: true
default: 'true'
outputs:
changelog:
description: The generated changelogs
prerelease:
description: Indicates whether it's a pre-release or not (if semver is set to true, otherwise this output will always return false)
release-id:
description: The pre-release id in case of prerelease being true, latest otherwise (if semver is set to true, otherwise this output will always return latest)
runs:
using: node20
main: action/index.js