From e9d414edd57f62cf05b87520e31c4e8241834806 Mon Sep 17 00:00:00 2001 From: Josh Wulf Date: Mon, 10 Jun 2024 15:43:42 +1200 Subject: [PATCH] ci(repo): add dispatch workflow to actions --- .github/workflows/pr-test.yml | 4 +++- .github/workflows/publish.yml | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index 20f9084d..baf0dfdf 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -1,6 +1,8 @@ name: Pull Request tests -on: [pull_request] +on: + pull_request: + workflow_dispatch: jobs: unit-tests: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 02016bb3..ffd07876 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,6 +1,7 @@ name: Publish a new version on: + workflow_dispatch: push: branches: - main