generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
39 lines (35 loc) · 979 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
29
30
31
32
33
34
35
36
37
38
39
name: 'Givve Automatic Deployment'
description: 'Provide a description here'
author: 'PL Gutscheinsysteme GmbH'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'heart'
color: 'red'
# Define your inputs here.
inputs:
semaphoreAPI:
description: 'Semaphore API to be queried'
required: true
semaphoreAPIKey:
description: 'Semaphore API key for authorization'
required: true
pull_request:
description: 'Pull Request that triggered the action'
required: true
component:
description: 'Component to be deployed'
required: true
GITHUB_TOKEN:
description: 'Token for Repository Access'
required: true
# Define your outputs here.
outputs:
deployment_lock:
description: 'If a lock is active, it returns the ID.'
lock_msg:
description: 'Message that should be send to slack.'
github_pr:
description: 'PR that set the lock.'
runs:
using: node20
main: dist/index.js