-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
33 lines (29 loc) · 831 Bytes
/
action.yml
File metadata and controls
33 lines (29 loc) · 831 Bytes
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
name: Git Log Action
description: Generate a commit-based changelog between two git tags
author: nils
branding:
icon: git-commit
color: gray-dark
inputs:
from-tag:
description: >
The starting tag for the changelog (exclusive). If not specified,
auto-detects the second-to-last tag.
required: false
to-tag:
description: >
The ending tag for the changelog (inclusive). If not specified,
auto-detects the latest tag.
required: false
outputs:
previousTag:
description: The resolved starting tag (may be empty if only one tag exists)
latestTag:
description: The resolved ending tag
log:
description: Plain text changelog (one commit per line)
markdownLog:
description: Markdown formatted changelog with commit links
runs:
using: node24
main: dist/index.js