From 56cb77a82872a82027c9f1381021fa8f8a09d1e5 Mon Sep 17 00:00:00 2001 From: Davis Chase <130488702+dev2049@users.noreply.github.com> Date: Fri, 19 May 2023 13:46:33 -0700 Subject: [PATCH] Make test gha workflow manually runnable (#4998) if https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch is to be believed this should make it possible to manually kick of test workflow, but i don't know much about these things --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d4049452d0f..0636da4e769 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,6 +4,7 @@ on: push: branches: [master] pull_request: + workflow_dispatch: env: POETRY_VERSION: "1.4.2"