-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
42 lines (39 loc) · 1.43 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
name: Merge Changelog
description: Compiles the change files into CHANGELOG.md
author: Enterwell
branding:
color: yellow
icon: git-merge
inputs:
changelog-location:
description: Location of the directory that contains Changelog.md
required: false
default: './'
changes-in-different-location:
description: Mark this as true if the 'changes' directory exists somewhere else than on the changelog location
required: false
default: 'false'
changes-location:
description: Location of the 'changes' directory
required: false
should-bump-version:
description: Should the new version be bumped in the appropriate project file ('package.json' or '*.csproj')
required: false
default: 'false'
path-to-project-file:
description: 'Path to the project file. If not set, the application will try to automatically determine the project file. Currently supported project types: NPM (package.json) and .NET SDK (*.csproj with the version tag).'
required: false
outputs:
bumped-semantic-version:
description: Newly bumped semantic version based on the changes made
bumped-major-part:
description: Major part of the newly bumped version
bumped-minor-part:
description: Minor part of the newly bumped version
bumped-patch-part:
description: Patch part of the newly bumped version
new-changes:
description: Changes from the new changelog section
runs:
using: node16
main: dist/index.js