From 83752727c2e1bf4366dfc377c7b5acd88a7ea595 Mon Sep 17 00:00:00 2001 From: John DiSanti Date: Thu, 25 Apr 2024 17:50:15 -0700 Subject: [PATCH] Allow manual invocation of verify TLS CI step (#3602) The verify TLS CI step is flaky at the moment, so it would be helpful to be able to run it manually against main to see if it was the PR that broke it, or if it is its general flakiness. ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._ --- .github/workflows/ci-tls.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-tls.yml b/.github/workflows/ci-tls.yml index f0824b3ba..bfb3a5d2f 100644 --- a/.github/workflows/ci-tls.yml +++ b/.github/workflows/ci-tls.yml @@ -11,6 +11,7 @@ env: name: Verify client TLS configuration on: + workflow_dispatch: pull_request: push: branches: [main] -- GitLab