From a23a9dfcfd64f4fe658906779c1bb4a28ce9a210 Mon Sep 17 00:00:00 2001 From: Alex Stone Date: Fri, 23 Aug 2024 09:05:04 -0700 Subject: [PATCH] [chore] Enable E2E test manual dispatch This adds support for initiating E2E tests manually from the Github Actions UI. This is useful for running tests against the `master` branch when a PR hasn't been opened up in a while. --- .github/workflows/e2e_test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e_test.yml b/.github/workflows/e2e_test.yml index 1fd2affb..0f168ddc 100644 --- a/.github/workflows/e2e_test.yml +++ b/.github/workflows/e2e_test.yml @@ -1,6 +1,10 @@ name: Run E2E Tests -on: [pull_request] +on: + # Ensures runs on every pull request. + pull_request: + # Enables manual invocation of workflow via Github UI and API. + workflow_dispatch: jobs: test: