Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xabaril/esquiorolloutaction
Esquio rollout action for Github
https://github.com/xabaril/esquiorolloutaction
Last synced: about 1 month ago
JSON representation
Esquio rollout action for Github
- Host: GitHub
- URL: https://github.com/xabaril/esquiorolloutaction
- Owner: Xabaril
- License: apache-2.0
- Created: 2019-10-27T14:59:30.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T12:44:53.000Z (almost 2 years ago)
- Last Synced: 2024-09-16T22:52:47.623Z (3 months ago)
- Language: JavaScript
- Size: 15.7 MB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Esquio 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
- **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)
- **flagId**: Id of the flag to enable.## Example
```YAML
- name: Esquio rollout
uses: actions/esquio-rollout
id: esquio-rollout
with:
esquioUrl: 'https://esquiodemoui.azurewebsites.net/'
esquioApiKey: ${{ secrets.apikey }}
flagId: 55
```