generated from dolittle/GitHub-Actions.TypeScript.Template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
30 lines (29 loc) · 811 Bytes
/
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
name: 'Add to changelog'
description: 'Prepends text to the changelog'
inputs:
version:
description: The version to add to the changelog
required: true
body:
description: Content to be appended to the changelog
required: true
pr-url:
description: The url to the pull request
required: true
changelog-path:
description: The relative path to the changelog file
required: false
default: 'CHANGELOG.md'
user-email:
description: The email of the user that commits the CHANGELOG
required: true
user-name:
description: The name of the user that commits the CHANGELOG
required: true
token:
description: The token used for pushing the CHANGELOG
required: false
default: ${{ github.token }}
runs:
using: 'node16'
main: 'release/index.js'