-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
33 lines (33 loc) · 1019 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: 'Unleash Feature Flags'
description: 'Lets you use the getunleash.io feature flags management solution in GitHub Actions'
inputs:
app-name:
description: 'The application name for the GitHub Action as you want it to appear in Unleash metrics'
type: 'string'
required: true
api-key:
description: 'The frontend API token to use with Unleash'
type: 'string'
required: true
url:
description: 'URL to Unleash Edge or frontend API'
type: 'string'
required: true
is-enabled:
description: 'Newline-separated list of feature flag names to evaluate'
type: 'string'
required: false
get-variant:
description: 'Newline-separated list of feature flag names to get variants for'
type: 'string'
required: false
context:
description: 'Multiline list of key=value pairs that will be string split on ='
type: 'string'
required: false
outputs:
the-value:
description: 'What we found in the input'
runs:
using: 'node20'
main: 'dist/index.js'