forked from mtchavez/airbrake-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
44 lines (44 loc) · 994 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
40
41
42
43
44
# action.yml
name: "Airbrake Deploy"
description: "Create a Deploy for an Airbrake Project"
branding:
icon: anchor
color: gray-dark
inputs:
project-id:
description: "Airbrake Project ID"
required: true
default: ""
project-key:
description: "Airbrake Project Key"
required: true
default: ""
environment:
description: "Airbrake Deploy Environment"
required: true
default: ""
repository:
description: "Airbrake Repository"
required: true
default: ""
revision:
description: "Airbrake Deploy Revision"
required: true
default: ""
user:
description: "Airbrake Deploy User"
required: true
default: ""
outputs:
response:
description: "The API response for creating a deploy"
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.project-id }}
- ${{ inputs.project-key }}
- ${{ inputs.environment }}
- ${{ inputs.repository }}
- ${{ inputs.revision }}
- ${{ inputs.user }}