From 884aeb4ea91a81afb29917603d732de04c1fc536 Mon Sep 17 00:00:00 2001 From: John Haddon Date: Mon, 5 Aug 2024 15:51:32 +0100 Subject: [PATCH] Version Check : Run when PR target branch is edited Otherwise you won't be rewarded with a nice green tick when you choose the correct base branch after a failure. --- .github/workflows/versionCheck.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/versionCheck.yml b/.github/workflows/versionCheck.yml index 0386fe8793..8f35ce8862 100644 --- a/.github/workflows/versionCheck.yml +++ b/.github/workflows/versionCheck.yml @@ -1,5 +1,9 @@ name: Version check -on: [ pull_request ] +on: + pull_request: + # Add `edited` to the default types, so that the check runs again + # when the target branch changes. + types: [opened, synchronize, reopened, edited] jobs: check: