From 0c1429c0b520142cd187924f8176967fabcf45d6 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Sat, 7 Jun 2025 12:47:33 -0300 Subject: [PATCH] Enable triggering the test workflow manually Useful in cases we want to run the `test` workflow without any code changes, e.g. to compare a previous run that was successful a few days ago but `main` appears to be broken without code changes a few days later. --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3ecc133878f..38dcfb2a92a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,6 +20,8 @@ on: - reopened # default - ready_for_review # used in PRs created from the release workflow + workflow_dispatch: # allows manual triggering of the workflow + env: PYTEST_ADDOPTS: "--color=yes"