-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathaction.yml
More file actions
30 lines (30 loc) · 1.18 KB
/
action.yml
File metadata and controls
30 lines (30 loc) · 1.18 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
28
29
30
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
github_token:
description: GitHub token to reduce the risk of rate limits when downloading the requested SetOps CLI
required: false
runs:
using: node20
main: dist/index.js
branding:
icon: terminal
color: white