From 467b9164ded2eef77ddd94dd455193541b8a7f94 Mon Sep 17 00:00:00 2001 From: magic_rb Date: Wed, 12 Jun 2024 17:36:08 +0200 Subject: [PATCH] Fix `app_project_id_map_name` in GitHub App backend, not having a `.json` extension Signed-off-by: magic_rb --- buildbot_nix/github/auth/_type.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildbot_nix/github/auth/_type.py b/buildbot_nix/github/auth/_type.py index abbff13..8c4c01b 100644 --- a/buildbot_nix/github/auth/_type.py +++ b/buildbot_nix/github/auth/_type.py @@ -19,5 +19,5 @@ class AuthTypeApp(AuthType): app_installation_token_map_name: Path = Path( "github-app-installation-token-map.json" ) - app_project_id_map_name: Path = Path("github-app-project-id-map-name") + app_project_id_map_name: Path = Path("github-app-project-id-map-name.json") app_jwt_token_name: Path = Path("github-app-jwt-token")