From 7feb0fc6943d85d5c5cb248596a1cd26591bcfe2 Mon Sep 17 00:00:00 2001 From: Max P Date: Fri, 23 Aug 2024 21:29:14 +0200 Subject: [PATCH] Add manual trigger to ValidateBranchName workflow - Included `workflow_dispatch` event in GitHub Actions - Allows for manual execution of the ValidateBranchName workflow --- .github/workflows/ValidateBranchName.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ValidateBranchName.yml b/.github/workflows/ValidateBranchName.yml index 5e9eee8..a805d6c 100644 --- a/.github/workflows/ValidateBranchName.yml +++ b/.github/workflows/ValidateBranchName.yml @@ -4,6 +4,7 @@ on: pull_request: branches: - main + workflow_dispatch: # Allows manual execution of the workflow. jobs: validate-branch-name-on-pull-request: