From 87441dd5d8be5d6d26c1a0fa93549059e2ad4a7d Mon Sep 17 00:00:00 2001 From: duckdoom4 <60387522+duckdoom4@users.noreply.github.com> Date: Wed, 14 Jun 2023 10:44:11 +0200 Subject: [PATCH] Also run check on base branch swap I accidentally selected master as base branch when creating the PR. When changing this to develop, the checks where not triggered. To fix this I added the `edited` type, which is used when changing the base ref. See https://github.com/actions/runner/issues/980 --- .github/workflows/pr-check.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 9b56c1f..2cf99da 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -2,6 +2,7 @@ name: PR Check on: pull_request: + types: [synchronize, opened, reopened, edited] branches: - master - develop