Skip to content

Commit cb46516

Browse files
committed
addressed comments
1 parent 15dad48 commit cb46516

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,16 @@ path: |
3636
!/path/to/feature-flags-ignore.json
3737
```
3838
39-
- `app-configuration-endpoint` - An Azure app configuration endpoint eg..
39+
- `app-configuration-endpoint` - An Azure app configuration endpoint. E.g.
4040
`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`.
4749

4850
### Example workflow
4951

action.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,21 @@ inputs:
1616
required: true
1717

1818
app-configuration-endpoint:
19-
description: 'Destination endpoint for the Azure App Configuration store'
19+
description: 'Destination endpoint for the Azure App Configuration store.'
2020
required: false
2121

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.'
2426
required: false
2527
default: None
2628

2729
operation: # Validate the configuration file only
2830
description:
2931
'Possible values: validate or deploy - deploy by default. validate: only
3032
validates the configuration file. deploy: deploys the feature flags to
31-
Azure App Configuration'
33+
Azure App Configuration.'
3234
required: false
3335
default: 'deploy'
3436

0 commit comments

Comments
 (0)