From d3a60b21feb0a672918ec5438420a746bcdced25 Mon Sep 17 00:00:00 2001 From: Richard Schneeman Date: Tue, 12 May 2020 09:57:33 -0500 Subject: [PATCH] [changelog skip] Fix PR edit check (#974) Previously when a PR title was edited, the "check for changelog" script would not fire. This means if someone edited it to add a "[changelog skip]" that the check would still show to be failing. This PR adds additional triggers for the check so that when the PR is edited, the check will re-run. --- .github/workflows/check_changelog.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check_changelog.yml b/.github/workflows/check_changelog.yml index acb89af..0856cd3 100644 --- a/.github/workflows/check_changelog.yml +++ b/.github/workflows/check_changelog.yml @@ -1,6 +1,8 @@ name: Check Changelog -on: [pull_request] +on: + pull_request: + types: [opened, reopened, edited, synchronize] jobs: build: