-
Notifications
You must be signed in to change notification settings - Fork 49
/
action.yml
75 lines (75 loc) · 2.87 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: 'Automatic Changelog Generator'
description: 'Creates or updates a changelog file in your repository with the help of the github-changelog-generator project'
branding:
icon: book-open
color: green
inputs:
user:
description: 'Username of the owner of target GitHub repo (default: extracted from $GITHUB_REPOSITORY)'
required: false
project:
description: 'Name of project on GitHub (default: extracted from $GITHUB_REPOSITORY)'
required: false
release_branch:
description: 'Limit pull requests to the release branch, such as master or release (required, default: master)'
required: false
default: 'master'
output:
description: 'Output file. To print to STDOUT instead, use blank as path. (required, default: CHANGELOG.md)'
required: false
default: 'CHANGELOG.md'
base:
description: 'Optional base file to append generated changes to (default: HISTORY.md)'
required: false
token:
description: 'To make more than 50 requests per hour your GitHub token is required. You can generate it at: https://github.com/settings/tokens/new<Paste>'
required: false
since_tag:
description: 'Changelog will start after specified tag.'
required: false
due_tag:
description: 'Changelog will end before specified tag.'
required: false
exclude_tags:
description: 'Changelog will exclude specified tags (comma seperated)'
required: false
exclude_labels:
description: 'Issues with the specified labels will be excluded from changelog. Default is "duplicate,question,invalid,wontfix".'
required: false
date_format:
description: 'Date format. Default is %Y-%m-%d'
required: false
future_release:
description: 'Put the unreleased changes in the specified release number.'
required: false
issue_line_labels:
description: 'The specified labels will be shown in brackets next to each matching issue. Use "ALL" to show all labels. Default is [].'
required: false
github_site:
description: 'The Enterprise GitHub site where your project is hosted if using GitHub Enterprise.'
required: false
github_api:
description: 'The enterprise endpoint to use for your GitHub API if using GitHub Enterprise.'
required: false
exclude_tags_regex:
description: 'Apply a regular expression on tag names so that they can be excluded, for example: --exclude-tags-regex ".*+d{1,}".'
required: false
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.user }}
- ${{ inputs.project }}
- ${{ inputs.branch }}
- ${{ inputs.base }}
- ${{ inputs.output }}
- ${{ inputs.token }}
- ${{ inputs.since_tag }}
- ${{ inputs.due_tag }}
- ${{ inputs.exclude_tags }}
- ${{ inputs.date_format }}
- ${{ inputs.future_release }}
- ${{ inputs.issue_line_labels }}
- ${{ inputs.github_site }}
- ${{ inputs.github_api }}
- ${{ inputs.exclude_tags_regex}}