Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xabaril/esquiorolloffactionv2
Esquio (V2) rolloff toggle Github Action
https://github.com/xabaril/esquiorolloffactionv2
Last synced: 9 days ago
JSON representation
Esquio (V2) rolloff toggle Github Action
- Host: GitHub
- URL: https://github.com/xabaril/esquiorolloffactionv2
- Owner: Xabaril
- License: apache-2.0
- Created: 2019-12-08T16:33:28.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T13:47:51.000Z (about 2 years ago)
- Last Synced: 2025-01-01T05:20:41.943Z (10 days ago)
- Language: JavaScript
- Homepage: https://esquio.readthedocs.io/
- Size: 16.1 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Esquio v2.0 Github Action rolloff feature
With this Esquio Github action you can disable 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)
- **productName**: Name of the product to which the feature belongs.
- **featureName**: Name of the feature to disable.## Example
```YAML
- name: Esquio rolloff
uses: actions/esquio-rolloff
id: esquio-rolloff
with:
esquioUrl: 'https://esquiodemoui.azurewebsites.net/'
esquioApiKey: ${{ secrets.apikey }}
productName: 'Default'
featureName: 'MatchScore'
```