From 40471e3dd9b896cb9de9b752b5640c3efe45d584 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Fri, 11 Oct 2024 12:37:10 -0500 Subject: [PATCH] Add workflow_dispatch trigger to GitHub Actions CI This allows users to trigger CI runs at any time from the GitHub Actions UI. We don't publish anything as part of the colcon/ci run, so it's safe to do and sometimes useful to investigate changes in our dependencies. --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f3cef12..598224b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,6 +5,7 @@ on: push: branches: ['main'] pull_request: + workflow_dispatch: jobs: pytest: