forked from cloudtruth/configure-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
31 lines (31 loc) · 983 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
---
name: 'CloudTruth Configure'
description: 'Securely deliver CloudTruth configuration and secrets into your GitHub Actions workflows.'
author: 'CloudTruth, Inc.'
inputs:
apikey:
description: 'The CloudTruth Service Account API key to use.'
required: true
project:
description: 'The CloudTruth project (name or id) within the organization.'
required: true
environment:
description: 'The CloudTruth environment (name or id) to view the project through.'
required: true
tag:
description: 'The environment tag name to use. If not specified, current values are retrieved.'
required: false
overwrite:
description: 'Allow environment variables to be overwritten.'
default: 'false'
required: false
server:
description: 'The CloudTruth server to execute the query against.'
default: 'https://api.cloudtruth.io'
required: false
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'settings'
color: 'blue'