-
Notifications
You must be signed in to change notification settings - Fork 7
/
action.yml
33 lines (33 loc) · 949 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
name: 'ServiceNow CI/CD Publish App'
description: 'Publishes the specified application to the application repository.'
author: "ServiceNow"
inputs:
version:
description: "Application version to publish"
required: false
devNotes:
description: "Developer notes to store with the application."
required: false
versionTemplate:
description: "Version template ( like 2.4 )."
required: false
versionFormat:
description: "exact, detect, autodetect, template"
required: false
incrementBy:
description: "Increment version level, should be positive or zero, Default: 1."
required: false
isAppCustomization:
description: "If true, require appSysID instead of appScope"
required: false
outputs:
rollbackVersion:
description: "Rollback version"
newVersion:
description: "Incremented version"
runs:
using: 'node12'
main: './lib/index.js'
branding:
icon: 'refresh-ccw'
color: 'green'