From 80929382265090c389c0a7dbea879154bf4381ae Mon Sep 17 00:00:00 2001 From: Peter Csajtai Date: Fri, 8 May 2026 15:51:41 +0200 Subject: [PATCH 1/3] Update eval flag action --- website/docs/integrations/github-eval.mdx | 6 +++--- website/docs/sdk-reference/overview.mdx | 2 -- .../versioned_docs/version-V1/integrations/github-eval.mdx | 6 +++--- .../versioned_docs/version-V1/sdk-reference/overview.mdx | 2 -- 4 files changed, 6 insertions(+), 10 deletions(-) diff --git a/website/docs/integrations/github-eval.mdx b/website/docs/integrations/github-eval.mdx index a6251b8de..764e8efc0 100644 --- a/website/docs/integrations/github-eval.mdx +++ b/website/docs/integrations/github-eval.mdx @@ -28,8 +28,8 @@ jobs: with: sdk-key: ${{ secrets.CONFIGCAT_SDK_KEY }} flag-keys: | - flag1 - flag2 + flag1:false + flag2:false user-attributes: | id:1234 @@ -49,7 +49,7 @@ The results of the flag evaluations are stored in the step outputs named with ea | Parameter | Description | Required | Default | | ---------------- | ---------------------------------------------------------------------------------------------------------- | ---------- | ------------------- | | `sdk-key` | SDK key identifying the config to download, also loaded from the `CONFIGCAT_SDK_KEY` environment variable | | | -| `flag-keys` | List of feature flag keys to evaluate. Multiple values must be in separate lines. | ☑ | | +| `flag-keys` | List of feature flag keys and their default values to evaluate. Multiple values must be in separate lines in the following format: `:`. Not setting a default value will set the flag's default value to `''`. | ☑ | | | `user-attributes` | List of user attributes used for evaluation. Multiple values must be in separate lines in the following format: `:`. Dedicated User Object attributes are mapped like the following: Identifier => id, Email => email, Country => country. | | | | `base-url` | The CDN base url from where the CLI will download the config JSON. | | ConfigCat CDN servers. | | `data-governance` | Describes the location of your feature flag and setting data within the ConfigCat CDN. Possible values: `eu`, `global`. | | `global` | diff --git a/website/docs/sdk-reference/overview.mdx b/website/docs/sdk-reference/overview.mdx index 48066d988..d3f2e2fbb 100644 --- a/website/docs/sdk-reference/overview.mdx +++ b/website/docs/sdk-reference/overview.mdx @@ -6,8 +6,6 @@ description: List of all supported technologies like .NET, Java, JavaScript, Nod The purpose of the SDKs is to download and cache feature flag values and to evaluate Targeting Rules. All SDKs provide a simple interface for accessing your feature flags from your application. -Check out our language specific Getting Started Guide on how to connect your applications. -
diff --git a/website/versioned_docs/version-V1/integrations/github-eval.mdx b/website/versioned_docs/version-V1/integrations/github-eval.mdx index a6251b8de..764e8efc0 100644 --- a/website/versioned_docs/version-V1/integrations/github-eval.mdx +++ b/website/versioned_docs/version-V1/integrations/github-eval.mdx @@ -28,8 +28,8 @@ jobs: with: sdk-key: ${{ secrets.CONFIGCAT_SDK_KEY }} flag-keys: | - flag1 - flag2 + flag1:false + flag2:false user-attributes: | id:1234 @@ -49,7 +49,7 @@ The results of the flag evaluations are stored in the step outputs named with ea | Parameter | Description | Required | Default | | ---------------- | ---------------------------------------------------------------------------------------------------------- | ---------- | ------------------- | | `sdk-key` | SDK key identifying the config to download, also loaded from the `CONFIGCAT_SDK_KEY` environment variable | | | -| `flag-keys` | List of feature flag keys to evaluate. Multiple values must be in separate lines. | ☑ | | +| `flag-keys` | List of feature flag keys and their default values to evaluate. Multiple values must be in separate lines in the following format: `:`. Not setting a default value will set the flag's default value to `''`. | ☑ | | | `user-attributes` | List of user attributes used for evaluation. Multiple values must be in separate lines in the following format: `:`. Dedicated User Object attributes are mapped like the following: Identifier => id, Email => email, Country => country. | | | | `base-url` | The CDN base url from where the CLI will download the config JSON. | | ConfigCat CDN servers. | | `data-governance` | Describes the location of your feature flag and setting data within the ConfigCat CDN. Possible values: `eu`, `global`. | | `global` | diff --git a/website/versioned_docs/version-V1/sdk-reference/overview.mdx b/website/versioned_docs/version-V1/sdk-reference/overview.mdx index 0cd16ae9a..07e5b1841 100644 --- a/website/versioned_docs/version-V1/sdk-reference/overview.mdx +++ b/website/versioned_docs/version-V1/sdk-reference/overview.mdx @@ -6,8 +6,6 @@ description: List of all supported technologies like .NET, Java, JavaScript, Nod The purpose of the SDKs is to download and cache feature flag values and to evaluate Targeting Rules. All SDKs provide a simple interface for accessing your feature flags from your application. -Check out our language specific Getting Started Guide on how to connect your applications. -
From 6246581c5153be7d22caa36020a26aa62ae529d3 Mon Sep 17 00:00:00 2001 From: Peter Csajtai Date: Fri, 8 May 2026 15:57:24 +0200 Subject: [PATCH 2/3] Fix headings --- website/docs/integrations/github-cli.mdx | 4 ++-- website/docs/integrations/github-eval.mdx | 4 ++-- website/versioned_docs/version-V1/integrations/github-cli.mdx | 4 ++-- .../versioned_docs/version-V1/integrations/github-eval.mdx | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/website/docs/integrations/github-cli.mdx b/website/docs/integrations/github-cli.mdx index 390712670..c9caffb64 100644 --- a/website/docs/integrations/github-cli.mdx +++ b/website/docs/integrations/github-cli.mdx @@ -6,14 +6,14 @@ description: This is a step-by-step guide on how to use the ConfigCat CLI in you This section describes how to install and use the ConfigCat CLI in GitHub Action workflows. -### Prerequisites +## Prerequisites - To let the CLI access the ConfigCat Public Management API, you have to create a new API credential. Store the credential in your repository's GitHub Secrets with the following names: `CONFIGCAT_API_USER`, `CONFIGCAT_API_PASS`. Github Action secrets -### Example +## Example The following example shows how you can install the ConfigCat CLI with ConfigCat's CLI Github Actions in your workflow. ```yaml diff --git a/website/docs/integrations/github-eval.mdx b/website/docs/integrations/github-eval.mdx index 764e8efc0..eff877024 100644 --- a/website/docs/integrations/github-eval.mdx +++ b/website/docs/integrations/github-eval.mdx @@ -7,11 +7,11 @@ description: This is a step-by-step guide on how to evaluate ConfigCat feature f ConfigCat's CLI GitHub Actions has the ability to evaluate feature flags in GitHub Action workflows. This feature lets you use your feature flag values or create conditional steps in your workflow. -### Prerequisites +## Prerequisites - An SDK key for the ConfigCat config/environment pair that contains the feature flags you want to evaluate. -### Example +## Example The following example shows how you can evaluate ConfigCat feature flags and use the evaluated results in subsequent steps. diff --git a/website/versioned_docs/version-V1/integrations/github-cli.mdx b/website/versioned_docs/version-V1/integrations/github-cli.mdx index cd4c6a0bd..899537a09 100644 --- a/website/versioned_docs/version-V1/integrations/github-cli.mdx +++ b/website/versioned_docs/version-V1/integrations/github-cli.mdx @@ -6,14 +6,14 @@ description: This is a step-by-step guide on how to use the ConfigCat CLI in you This section describes how to install and use the ConfigCat CLI in GitHub Action workflows. -### Prerequisites +## Prerequisites - To let the CLI access the ConfigCat Public Management API, you have to create a new API credential. Store the credential in your repository's GitHub Secrets with the following names: `CONFIGCAT_API_USER`, `CONFIGCAT_API_PASS`. Github Action secrets -### Example +## Example The following example shows how you can install the ConfigCat CLI with ConfigCat's CLI Github Actions in your workflow. ```yaml diff --git a/website/versioned_docs/version-V1/integrations/github-eval.mdx b/website/versioned_docs/version-V1/integrations/github-eval.mdx index 764e8efc0..eff877024 100644 --- a/website/versioned_docs/version-V1/integrations/github-eval.mdx +++ b/website/versioned_docs/version-V1/integrations/github-eval.mdx @@ -7,11 +7,11 @@ description: This is a step-by-step guide on how to evaluate ConfigCat feature f ConfigCat's CLI GitHub Actions has the ability to evaluate feature flags in GitHub Action workflows. This feature lets you use your feature flag values or create conditional steps in your workflow. -### Prerequisites +## Prerequisites - An SDK key for the ConfigCat config/environment pair that contains the feature flags you want to evaluate. -### Example +## Example The following example shows how you can evaluate ConfigCat feature flags and use the evaluated results in subsequent steps. From be0e0723afb2bf43e7b17ff9b72df88b46251514 Mon Sep 17 00:00:00 2001 From: Peter Csajtai Date: Fri, 8 May 2026 16:11:00 +0200 Subject: [PATCH 3/3] Fix headings --- website/docs/integrations/github-eval.mdx | 2 +- website/versioned_docs/version-V1/integrations/github-eval.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/integrations/github-eval.mdx b/website/docs/integrations/github-eval.mdx index eff877024..8ef1e60e8 100644 --- a/website/docs/integrations/github-eval.mdx +++ b/website/docs/integrations/github-eval.mdx @@ -44,7 +44,7 @@ jobs: The results of the flag evaluations are stored in the step outputs named with each flag's key. -### Available Options +## Available Options | Parameter | Description | Required | Default | | ---------------- | ---------------------------------------------------------------------------------------------------------- | ---------- | ------------------- | diff --git a/website/versioned_docs/version-V1/integrations/github-eval.mdx b/website/versioned_docs/version-V1/integrations/github-eval.mdx index eff877024..8ef1e60e8 100644 --- a/website/versioned_docs/version-V1/integrations/github-eval.mdx +++ b/website/versioned_docs/version-V1/integrations/github-eval.mdx @@ -44,7 +44,7 @@ jobs: The results of the flag evaluations are stored in the step outputs named with each flag's key. -### Available Options +## Available Options | Parameter | Description | Required | Default | | ---------------- | ---------------------------------------------------------------------------------------------------------- | ---------- | ------------------- |