forked from psprings/bugsnag-release-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
32 lines (32 loc) · 1.14 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
name: 'Bugsnag Release'
description: 'Notify your Bugsnag project of a code release/deployment'
branding:
icon: 'box'
color: 'green'
inputs:
apiKey:
description: 'The Bugsnag API Key for your project'
required: true
appVersion:
description: 'The version of the application that you are deploying. If action is triggered by a release, it will use the tag by default.'
required: false
autoAssignRelease:
description: 'Allows you to notify Bugsnag that a new version has been released to a particular release stage'
default: false
required: false
metadata:
description: 'Optional metadata tags pertinent to the release'
required: false
releaseStage:
description: 'This identifies the unique stage/environment that the application code has been released to. Defaults to `production`'
default: 'production'
required: false
sourceControlRepository:
description: 'The source code repository associated with the released code'
required: false
sourceControlRevision:
description: 'The revision of the source code for this release'
required: false
runs:
using: 'node20'
main: 'index.js'