generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
36 lines (36 loc) · 1.25 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
name: 'release-automation-action'
description: 'GitHub action for release automation'
author: 'Airen Kang'
inputs:
gh_token:
required: true
description: 'Input GitHub access token here'
circleci_token:
required: true
description: 'Input CircleCI API token here'
platform:
required: true
description: 'Input SDK platform here, e.g. ios, android, js, rn, flutter'
product:
required: true
description: 'Input SDK product here, e.g. chat, calls, uikit, live, live_uikit'
product_jira_project_key:
required: true
description: 'Input product jira project key here, e.g. CORE, UIKIT, CALLS, PLATFORMX'
product_jira_version_prefix:
required: false
description: 'Input custom product jira release version prefix here, e.g. ios_core, rn_uikit, js_uikit. (default: {product}-{platform}[-{framework}]?)'
framework:
required: false
description: 'Input SDK framework here, e.g. react'
test:
required: false
description: 'Input actions run on testing environment'
default: 'false'
changelog_file:
required: false
description: 'Input changelog file name. (e.g. CHANGELOG_KTX_DRAFT.md) Default is CHANGELOG_DRAFT.md.'
default: 'CHANGELOG_DRAFT.md'
runs:
using: 'node16'
main: 'dist/index.js'