Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xabaril/esquiorolloutactionv3


https://github.com/xabaril/esquiorolloutactionv3

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Esquio (V3) Github Action rollout feature

With this Esquio Github action you can enable a feature in an Github Actions workflow.[Esquio](https://esquio.readthedocs.io/en/latest/).

Please read [Esquio readthedocs](https://esquio.readthedocs.io/en/latest/) first to fully understand Esquio Feature Toggle package configuration and possibilities.

## Parameters needed

- **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.
- **deployment-name**: Name of the deplyment you want to set the value for (if you are using rings, otherwise leave empty)

## Example

```YAML
- name: Esquio rollout
uses: actions/esquio-rollout-v3
id: esquio-rollout-v3
with:
esquio-url: 'https://esquiodemoui.azurewebsites.net/'
esquio-api-key: ${{ secrets.apikey }}
product-name: 'Default'
feature-name: 'MatchScore'
deployment-name: 'Tests'
```