From c273f02e65b106953e2a57552989613e9dfd2ff1 Mon Sep 17 00:00:00 2001 From: Matthieu Darbois Date: Tue, 20 Feb 2024 16:11:45 +0100 Subject: [PATCH] chore(ci): allow manual runs on branches without a PR (#766) --- .github/workflows/action.yml | 2 ++ .github/workflows/ci.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index e5b12a7a..8578a1aa 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -9,6 +9,8 @@ on: - ".github/workflows/action.yml" - ".github/action_helper.py" - "action.yml" + workflow_dispatch: + # allow manual runs on branches without a PR env: FORCE_COLOR: "1" jobs: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5be101ae..9bfd405f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,8 @@ on: push: branches: [main] pull_request: + workflow_dispatch: + # allow manual runs on branches without a PR env: FORCE_COLOR: "1"