File tree Expand file tree Collapse file tree 2 files changed +15
-11
lines changed Expand file tree Collapse file tree 2 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -36,14 +36,16 @@ path: |
36
36
!/path/to/feature-flags-ignore.json
37
37
` ` `
38
38
39
- - ` app-configuration-endpoint` - An Azure app configuration endpoint eg. .
39
+ - ` app-configuration-endpoint` - An Azure app configuration endpoint. E.g .
40
40
` https://<app-configuration-name>.azconfig.io`
41
- - ` strict` - If strict, the sync operation deletes feature flags not found in
42
- the config file. Choices : true, false.
43
- - `operation` - [optional] Possible values : validate or deploy - deploy by
44
- default. validate : only validates the configuration file. deploy: deploys the
45
- feature flags to Azure App Configuration deploy : Updates the Azure App
46
- configuration
41
+ - ` label` - [optional] Azure App Configuration label to apply to the feature
42
+ flags. If not specficed, the default is no label.
43
+ - `operation` - [optional] Possible values : ` validate` or `deploy` - `deploy` by
44
+ default. `validate` : only validates the configuration file. `deploy`: deploys
45
+ the feature flags to Azure App Configuration
46
+ - `strict` - Choices : ` true` or `false`. If strict, the operation deletes
47
+ feature flags not found in the configuration file. Required when operation is
48
+ ` deploy` .
47
49
48
50
# ## Example workflow
49
51
Original file line number Diff line number Diff line change @@ -16,19 +16,21 @@ inputs:
16
16
required : true
17
17
18
18
app-configuration-endpoint :
19
- description : ' Destination endpoint for the Azure App Configuration store'
19
+ description : ' Destination endpoint for the Azure App Configuration store. '
20
20
required : false
21
21
22
- app-config-label :
23
- description : ' Label for the config'
22
+ label :
23
+ description :
24
+ ' Azure App Configuration label to apply to the feature flags. If not
25
+ specficed, the default is no label.'
24
26
required : false
25
27
default : None
26
28
27
29
operation : # Validate the configuration file only
28
30
description :
29
31
' Possible values: validate or deploy - deploy by default. validate: only
30
32
validates the configuration file. deploy: deploys the feature flags to
31
- Azure App Configuration'
33
+ Azure App Configuration. '
32
34
required : false
33
35
default : ' deploy'
34
36
You can’t perform that action at this time.
0 commit comments