[!IMPORTANT] This GitHub Action is under beta release and is subject to the Azure AI Private Preview Terms - Online Experimentation.
This GitHub Action deploys feature flags from a configuration file in your GitHub repository to an App Configuration store. This enables GitHub Action workflows where the App Configuration store is automatically updated when changes are made to the configuration file.
JSON files are supported. For the full list of action inputs, see Inputs.
JSON file needs to follow schema mentioned in file here
Create a workflow .yml file in your repository's .github/workflows
directory. An example workflow is available below. For more
information, see the GitHub Help Documentation for
Creating a workflow file.
- path- A list of files, directories, and wildcard patterns to cache and restore. See- @actions/globfor supported patterns. Example:
path: |
  /path/to/feature-flags*.json
  !/path/to/feature-flags-ignore.json- app-configuration-endpoint- An Azure app configuration endpoint. E.g.- https://<app-configuration-name>.azconfig.io
- label- [optional] Azure App Configuration label to apply to the feature flags. If not specficed, the default is no label.
- operation- [optional] Possible values:- validateor- deploy-- deployby default.- validate: only validates the configuration file.- deploy: deploys the feature flags to Azure App Configuration
- strict- Choices:- trueor- false. If strict, the operation deletes feature flags not found in the configuration file. Required when operation is- deploy.
The following workflow updates the App Configuration store each time a change is
made to feature-flags.json in the repository.
# File: .github/workflows/deploy-feature-flags.yml
on:
  workflow_dispatch:
  push:
    branches:
      - main
    paths:
      - /path/to/feature-flags.json
jobs:
  deploy-feature-flags:
    runs-on: ubuntu-latest
    concurrency:
      group: prod_environment
      cancel-in-progress: true
    permissions:
      id-token: write
      contents: read
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: Azure login using Federated Credentials
        uses: azure/login@v2
        with:
          client-id: ${{ vars.AZURE_CLIENT_ID }}
          tenant-id: ${{ vars.AZURE_TENANT_ID }}
          subscription-id: ${{ vars.AZURE_SUBSCRIPTION_ID }}
          enable-AzPSSession: true
      - name: Deploy App Config feature flags
        uses: azure/app-configuration-deploy-feature-flags@v1-beta
        with:
          path: /path/to/feature-flags.json
          app-configuration-endpoint: <app-configuration-endpoint>
          strict: falseThe following workflow snippet validates feature flag config file. This is useful in PR build.
- name: Validate App Config feature flags
  uses: azure/app-configuration-deploy-feature-flags@v1-beta
  with:
    path: /path/to/feature-flags.json
    app-configuration-endpoint: <app-configuration-endpoint>
    strict: false
    operation: validateThis project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.