From 3782e65e9fc0c9193e350fae1eb68759563f8e7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93scar=20San=20Jos=C3=A9?= Date: Fri, 29 May 2026 12:52:51 +0200 Subject: [PATCH] Easy fixes from CR --- CHANGELOG.md | 2 +- src/feature-flags/properties.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9218765f..a17b2bf66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th ## [UNRELEASED] -- Organizations can now create a custom repository property with the name `github-codeql-tools` to set the default CodeQL CLI tools value for their repositories. For more information, see [Managing custom properties for repositories in your organization](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization) and [Customizing your advanced setup for code scanning](https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning). +- Organizations can now create a custom repository property with the name `github-codeql-tools` to set the default CodeQL CLI tools value for their repositories. For more information, see [Managing custom properties for repositories in your organization](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization), [Repository properties for Code Scanning](https://docs.github.com/en/code-security/concepts/code-scanning/repository-properties) and [Customizing your advanced setup for code scanning](https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning). ## 4.36.0 - 22 May 2026 diff --git a/src/feature-flags/properties.ts b/src/feature-flags/properties.ts index 7eafadf91..a80ef436e 100644 --- a/src/feature-flags/properties.ts +++ b/src/feature-flags/properties.ts @@ -204,7 +204,7 @@ export async function loadRepositoryProperties( try { return new Success(await loadPropertiesFromApi(logger, repositoryNwo)); } catch (error) { - logger.warning( + logger.info( `Failed to load repository properties: ${getErrorMessage(error)}`, ); return new Failure(error);