generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
67 lines (67 loc) · 1.8 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
name: 'Update a Release by ID'
description: 'Update a release given by its ID.'
author: 'Simon Ihmig'
inputs:
token:
description: The Github token used for authentication.
required: true
owner:
description: Name of the owner of the repo, taken from current repo by default.
required: false
repo:
description: Name of the repository, taken from current repo by default.
required: false
id:
description: The ID to identify the release.
required: true
name:
description: Name of the release
required: false
body:
description: Body text of the release.
required: false
tag_name:
description: Tag name of the release.
required: false
target_commitish:
description: Specifies the commitish value that determines where the Git tag is created from. Can be any branch or commit SHA.
required: false
prerelease:
description: Mark this release as a pre-release.
required: false
draft:
description: Set to false to publish a draft release.
required: false
outputs:
id:
description: The ID of the Release
url:
description: The release url
html_url:
description: The url users can navigate to in order to view the release
assets_url:
description: The release assets url
upload_url:
description: The url for uploading assets to the release
name:
description: The release name
body:
description: The release's body content
tag_name:
description: The git tag associated with the release
draft:
description: Is draft
prerelease:
description: Is pre-release
target_commitish:
description: The commitish value of the release
created_at:
description: Created date
published_at:
description: Published date
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: tag
color: orange