-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
44 lines (36 loc) · 900 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
44
---
name: 'calens'
description: 'Generate changelogs based on Calens'
author: 'actionhippie'
inputs:
source:
description: |
Path to changelog definitions, defaults to `changelog`
required: false
default: 'changelog'
target:
description: |
Path to file where changelog gets written to
required: false
template:
description: |
Path to changelog template file, defaults to `changelog/CHANGELOG.tmpl`
required: false
default: 'changelog/CHANGELOG.tmpl'
version:
description: |
Generate changelog for defined version only
required: false
print:
description: |
Print generated changelog directly, defaults to `true`
required: false
default: 'true'
outputs:
generated:
description: |
Generated changelog content
runs:
using: 'docker'
image: 'docker://ghcr.io/actionhippie/calens:v1.8.0'
...