forked from baratrion/sleuth-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
32 lines (32 loc) · 901 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
name: 'Sleuth API Deploy Registration'
description: 'Register a deploy via the Sleuth API'
branding:
icon: codepen
color: blue
inputs:
organization-slug:
description: 'Slug of the organization parent of the affected code deployment'
required: true
deployment-slug:
description: 'Slug of the code deployment'
required: true
api-key:
description: 'Sleuth organization API key'
required: true
sha:
description: 'The git SHA of the deployment'
required: true
default: ${{ github.sha }}
environment:
description: 'String defining the environment to register the deploy against'
email:
description: 'Email address of author'
ignore-if-duplicate:
description: 'Will not cause a failure if a deploy already exists'
default: 'false'
outputs:
status:
description: 'Response status code'
runs:
using: 'node16'
main: 'dist/index.js'