Skip to content

Commit

Permalink
Refactored doc parameter names
Browse files Browse the repository at this point in the history
  • Loading branch information
lfraile committed Apr 25, 2020
1 parent 181a5b9 commit dfe0ae5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ Please read [Esquio readthedocs](https://esquio.readthedocs.io/en/latest/) first

## Parameters needed

- **esquioUrl**: Url to the ESquio Api. i.e.: https://myesquioui.deployment.com
- **esquioApiKey**: API key to authenticate to esquio. Recommended to store as [Github secret](https://help.github.com/en/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions#creating-and-using-secrets-encrypted-variables)
- **productName**: Name of the product to which the feature belongs.
- **featureName**: Name of the feature to enable.
- **esquio-url**: Url to the ESquio Api. i.e.: https://myesquioui.deployment.com
- **esquio-api-key**: API key to authenticate to esquio. Recommended to store as [Github secret](https://help.github.com/en/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions#creating-and-using-secrets-encrypted-variables)
- **product-name**: Name of the product to which the feature belongs.
- **feature-name**: Name of the feature to enable.

## Example

Expand All @@ -18,8 +18,8 @@ Please read [Esquio readthedocs](https://esquio.readthedocs.io/en/latest/) first
uses: actions/esquio-rollout-v3
id: esquio-rollout-v3
with:
esquioUrl: 'https://esquiodemoui.azurewebsites.net/'
esquioApiKey: ${{ secrets.apikey }}
productName: 'Default'
featureName: 'MatchScore'
esquio-url: 'https://esquiodemoui.azurewebsites.net/'
esquio-api-key: ${{ secrets.apikey }}
product-name: 'Default'
feature-name: 'MatchScore'
```

0 comments on commit dfe0ae5

Please sign in to comment.