generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
34 lines (34 loc) · 1.08 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
name: 'Release Draft'
description: 'Creates & updates GitHub release draft, automatically generates release notes, and bumps semver compliant tags.'
author: 'Chris Kerins'
inputs:
repo-token:
description: 'The GITHUB_TOKEN secret'
commitish:
description: 'Target of release. Default: default branch'
required: false
bump:
description: 'Semver bump type. Options: major, minor, patch, premajor, preminor, prepatch, or prerelease. Default level is patch. Only one version may be specified.'
required: false
default: 'patch'
release-strategy:
description: 'See Release Strategy section for details.'
required: false
default: 'single'
publish-strategy:
description: 'See Publish Strategy section for details.'
required: false
default: 'manual'
outputs:
id:
description: 'The ID of the Release'
html_url:
description: 'The URL users can navigate to in order to view the release'
upload_url:
description: 'The URL for uploading assets to the release'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'save'
color: 'blue'