Skip to content

Xabaril/EsquioRolloutActionV3

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Esquio (V3) Github Action rollout feature

With this Esquio Github action you can enable a feature in an Github Actions workflow.Esquio.

Please read Esquio readthedocs 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
  • 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

      - 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'