forked from setopsco/github-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
27 lines (27 loc) · 1.07 KB
/
action.yml
File metadata and controls
27 lines (27 loc) · 1.07 KB
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
name: 'Setup SetOps'
description: 'Sets up the SetOps CLI in your GitHub Actions workflow.'
author: 'SetOps'
inputs:
setops_version:
description: 'The version of SetOps CLI to install. Instead of a full version string you can also specify a constraint string. Examples are: `<0.1.5`, `~0.1.4`, `0.1.x` (all three installing the latest available 0.1.4 version). Defaults to `latest`.'
default: 'latest'
required: false
setops_organization:
description: 'The SetOps organization to login to. If not set, no login will be executed.'
required: false
setops_username:
description: 'The SetOps username for a SetOps service to login in. If not set, no login will be executed.'
required: false
setops_password:
description: 'The SetOps password for a SetOps service to login in. If not set, no login will be executed.'
required: false
setops_api_url:
description: 'The SetOps API URL to connect to.'
default: 'https://api.setops.co'
required: false
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'terminal'
color: 'white'