From 5957bc7d9cd252937744fb658dbd83422e666055 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 28 Jul 2021 22:21:05 +0200 Subject: [PATCH] ci: Run static checks when PRs are updated MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Looking at the changes that could cause the static-checks not to run when a PR is updated I think 7db8a85a1f3b4a2ccecd959c33fd88386e4a8691 could be the one that introduced such a regression. Let's (try to) fix this by enforcing the workflow to run also when the PR has been "edited" and "synchronized". Fixes: #2343 Signed-off-by: Fabiano FidĂȘncio --- .github/workflows/static-checks.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/static-checks.yaml b/.github/workflows/static-checks.yaml index ce0ac2ef4c..eb726a18cb 100644 --- a/.github/workflows/static-checks.yaml +++ b/.github/workflows/static-checks.yaml @@ -2,7 +2,9 @@ on: pull_request: types: - opened + - edited - reopened + - synchronize - labeled - unlabeled