-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
26 lines (26 loc) · 907 Bytes
/
action.yml
File metadata and controls
26 lines (26 loc) · 907 Bytes
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
name: 'Bugsnag release action'
description: 'Github action that will push a new release to bugsnag'
author: 'Jonas Schwartz'
inputs:
BUGSNAG_API_KEY:
description: 'Your bugsnag API Key'
required: true
releaseStage:
description: 'The release stage of the build. The default is `production`'
default: 'production'
required: false
builderName:
description: 'The name provisioning the build. The default is the name triggering the build.'
required: false
autoAssignRelease:
description: 'Flag indicating whether to automatically associate this build with any new error events and sessions that are received for the release stage. The default is `true`'
required: false
version:
description: 'The version to add to bugsnag. The default is the Git SHA.'
required: false
runs:
using: 'node12'
main: 'dist/main.js'
branding:
color: 'blue'
icon: 'upload'