-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
61 lines (49 loc) · 1.58 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: "gitchangelog-action"
author: sarnold
description: "Generate nice changelogs, eg, for the github release page"
inputs:
github_token:
description: "GITHUB_TOKEN secret < automatically provided by Github , you don't need to set up >"
required: true
config_file:
description: "Path to gitchangelog.rc (default uses Markdown release cfg)"
default: ""
required: false
output_file:
description: "Filename for changelog (default is CHANGES.md)"
default: "CHANGES.md"
required: false
extra_sort:
description: "Whether to sort the list of tags (fix ordering issues)"
default: ""
required: false
no_args:
description: "Pass no ref args to gitchangelog (always generate full changelog)"
default: ""
required: false
commit_changelog:
description: "Whether to commit the changelog file"
default: ""
required: false
target_branch:
description: "Branch that the action will target. Defaults to the current branch."
default: ""
required: false
pull_request_branch:
description: "Branch that the action will target on pull_request. Defaults to GITHUB_BASE_REF."
default: ""
required: false
target_repository:
description: "Repository that the report will be pushed to. Defaults to the current repository."
default: ""
required: false
pull_request_repository:
description: "Repository that the action will target on pull_request. Defaults to TARGET_REPOSITORY"
default: ""
required: false
runs:
using: "docker"
image: "Dockerfile"
branding:
icon: "file-text"
color: "green"