generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
68 lines (67 loc) · 1.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
name: 'Draft Release Notes'
description: 'Create a draft release on GitHub based on release.yml'
author: Luca Comellini <lucacome>
inputs:
github-token:
description: 'GitHub Token as provided by secrets'
default: ${{ github.token }}
required: true
major-label:
description: 'Label to use for major version bump'
default: 'change'
required: false
minor-label:
description: 'Label to use for minor version bump'
default: 'enhancement'
required: false
notes-header:
description: 'Header to use for changelog'
default: ''
required: false
notes-footer:
description: 'Footer to use for changelog'
default: ''
required: false
variables:
description: 'List of variables to use in the header and footer'
default: ''
required: false
collapse-after:
description: 'Number of lines required for the section to be collapsed'
default: '0'
required: false
publish:
description: 'Whether to publish the release'
default: 'false'
required: false
config-path:
description: 'Path to the configuration file'
default: '.github/release.yml'
required: false
dry-run:
description: 'Whether to run the action without creating a release'
default: 'false'
required: false
outputs:
version:
description: 'The version of the release'
previous-version:
description: 'The version of the previous release'
release-notes:
description: 'The release notes for the release'
release-url:
description: 'The URL of the release'
release-id:
description: 'The ID of the release'
release-sections:
description: 'The sections of the release in JSON format'
release-header:
description: 'The header of the release'
release-footer:
description: 'The footer of the release'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'file-text'
color: 'green'