generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
28 lines (27 loc) · 844 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
name: 'GitHub repository operations'
description: 'Github Action to interact with the github repository'
author: 'jikuma'
inputs:
repo-token:
description: 'The GITHUB_TOKEN secret'
required: true
operation:
description: "Define an operation you want to take, e.g 'create a release', 'upload to release'"
default: 'create a release'
required: true
tag_name:
description: 'tag name of the release'
default: 'Release-GITHUB_SHORT_SHA'
release_title:
description: 'title of the release'
release_note:
description: 'add a release note'
release_draft:
description: 'is this a draft release'
release_prerelease:
description: 'is this a pre-release version'
asset_filepath:
description: 'filepath for the asset to be uploaded to release'
runs:
using: 'node12'
main: 'lib/main.js'