Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xabaril/esquiorolloutactionv3
https://github.com/xabaril/esquiorolloutactionv3
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/xabaril/esquiorolloutactionv3
- Owner: Xabaril
- License: apache-2.0
- Created: 2020-04-11T09:52:18.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-20T15:30:22.000Z (over 4 years ago)
- Last Synced: 2024-10-29T20:40:44.546Z (about 2 months ago)
- Language: JavaScript
- Size: 16.3 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
```