forked from metcalfc/changelog-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
41 lines (41 loc) · 1.04 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
name: 'Get a changelog between two references patch'
author: 'Chad Metcalf & Raiku'
description: 'Returns the commit difference count between two git references.'
inputs:
mytoken:
description: 'Your GITHUB_TOKEN'
default: ''
required: true
head-ref:
description: 'The name of the head reference'
default: ''
required: false
base-ref:
description: 'The name of the base reference'
default: ''
required: false
reverse:
description: 'Git log is chronological order by default. Set to true to reverse chronological order. '
default: 'false'
required: false
fetch:
description: 'Whether to have this action fetch all other branches and tags'
default: 'true'
required: false
match-tag:
description: 'Match tag'
default: '*'
required: false
match-commit:
description: 'Match commit'
default: '*'
required: false
outputs:
changelog:
description: 'Markdown formatted changelog'
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'list'
color: 'blue'