From 400864ad41993f4610b0b5b2e2f8205b6cefc683 Mon Sep 17 00:00:00 2001 From: Andrew Martinez Date: Wed, 4 Sep 2024 15:01:09 -0400 Subject: [PATCH] add file list to matching failure output --- .github/workflows/check_versions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check_versions.py b/.github/workflows/check_versions.py index b94ca15..cd4e950 100644 --- a/.github/workflows/check_versions.py +++ b/.github/workflows/check_versions.py @@ -19,7 +19,7 @@ def extract_version(file_path): # Check if all versions are the same if len(set(versions)) != 1: - raise ValueError(f"Versions do not match across files: {versions}") + raise ValueError(f"Versions do not match across files: {versions}: please make sure all files {files} have the same version") # Get the current version current_version = versions[0]