-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
43 lines (36 loc) · 974 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
33
34
35
36
37
38
39
40
41
42
43
name: "Generate CHANGELOG based on git-chglog"
description: "Generates a changelog using git-chlog tool. Use output changelog to create a release."
author: "Hans Mayer"
branding:
icon: "shopping-cart"
color: "blue"
inputs:
config_path:
description: "Configuration directory for git-chglog"
default: "/.chglog"
required: false
next_tag:
description: "Tag of target version"
required: true
old_tag:
description: "Tag of source version"
required: false
output_file:
description: "The file, where the output should be written"
default: "CHANGELOG.md"
required: false
write_file:
description: "Output file should be written"
required: false
outputs:
changelog:
description: "The CHANGELOG content"
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.config_path }}
- ${{ inputs.next_tag }}
- ${{ inputs.old_tag }}
- ${{ inputs.output_file }}
- ${{ inputs.write_file }}