From 37edc22f608953fa550504194509f0acc5fd534e Mon Sep 17 00:00:00 2001 From: Jimisola Laursen Date: Mon, 22 Jun 2026 00:04:00 +0200 Subject: [PATCH] fix(ci): drop --verbosity compact from reqstool-status, not on PyPI yet MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit reqstool status --verbosity compact failed on the latest PyPI release (0.11.0): "invalid choice: 'compact'" — that flag is another reqstool-client@main-only feature, same situation as the validate subcommand. Fall back to default verbosity output rather than adding another availability-tracking input for a cosmetic flag. Found via reqstool-demo#104's pypi matrix leg. Signed-off-by: Jimisola Laursen --- .github/actions/reqstool-status/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/reqstool-status/action.yml b/.github/actions/reqstool-status/action.yml index 9a2ce0d..74ca8a9 100644 --- a/.github/actions/reqstool-status/action.yml +++ b/.github/actions/reqstool-status/action.yml @@ -21,7 +21,7 @@ runs: REQSTOOL_PATH: ${{ inputs.reqstool-path }} run: | if [ "$FAIL_IF_INCOMPLETE" = "true" ]; then - reqstool status --verbosity compact --check-all-reqs-met local -p "$GITHUB_WORKSPACE/$REQSTOOL_PATH" + reqstool status --check-all-reqs-met local -p "$GITHUB_WORKSPACE/$REQSTOOL_PATH" else - reqstool status --verbosity compact local -p "$GITHUB_WORKSPACE/$REQSTOOL_PATH" + reqstool status local -p "$GITHUB_WORKSPACE/$REQSTOOL_PATH" fi