forked from saadmk11/changelog-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yaml
33 lines (32 loc) · 1.08 KB
/
action.yaml
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: Changelog CI
description: Changelog CI is a GitHub Action that generates changelog, then it is committed and/or commented to the release pull request.
author: Maksudul Haque
branding:
icon: 'clock'
color: 'blue'
inputs:
changelog_filename:
description: 'Name of the changelog file if not provided defaults to CHANGELOG.md'
required: false
default: 'CHANGELOG.md'
config_file:
description: 'Location of the config JSON file'
required: false
committer_username:
description: 'Name of the user who will commit the changes to GitHub'
required: false
default: 'github-actions[bot]'
committer_email:
description: 'Email Address of the user who will commit the changes to GitHub'
required: false
default: 'github-actions[bot]@users.noreply.github.com'
release_version:
description: 'The release version that will be used on the generated Changelog'
required: false
github_token:
description: 'GITHUB_TOKEN or Personal Access Token (PAT)'
required: false
default: ${{ github.token }}
runs:
using: 'docker'
image: 'Dockerfile'