generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
37 lines (37 loc) · 1.11 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
name: init-action
description: 'This action is used for one time automation. It took each key from client_payload.toReplace and replace it to value'
author: carbohydrates
inputs:
token:
description: 'github private access token, usually secrets.GITHUB_TOKEN , needs only for pr creation'
required: false
event_type:
description: 'event type that action will accept'
required: true
default: 'init_action'
destroy_after_execution:
description: 'Destroy the workflow that contains this action after successful execution'
required: true
default: 'true'
create_pr:
description: 'create pr instead of direct pushing to master'
required: true
default: 'false'
author_name:
description: 'author_name of commit'
required: true
default: 'initbot'
author_email:
description: 'git author email that will push changes'
required: true
default: 'initbot@example.com'
commit_message:
description: 'Commit message for changes'
required: true
default: 'init action commit'
runs:
using: 'node12'
main: 'dist/index.js'
branding:
color: gray-dark
icon: loader