about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Krones <hello@philkrones.com>2025-01-10 17:47:26 +0000
committerGitHub <noreply@github.com>2025-01-10 17:47:26 +0000
commit8678f9cdb6b1f9f0182f51c2cabd44648eb8a9a5 (patch)
tree93ac679f1989f48d6f882014d2741ad8b6d86e55
parentfc0e65d15731f34fc28514de1800477d1ba479b9 (diff)
parent1bdee5b6b39f526dc5697f3938acf675d8be1f43 (diff)
downloadrust-8678f9cdb6b1f9f0182f51c2cabd44648eb8a9a5.tar.gz
rust-8678f9cdb6b1f9f0182f51c2cabd44648eb8a9a5.zip
CI: rerun the changelog check on PR synchronization (#13980)
Rerunning the PR checks when a PR is synchronized (new commits added, or
force-pushed) seems to remove the changelog checks from the UI while
keeping the PR mergeable from the maintainer's interface.

This PR reruns the cheap changelog check when a PR is synchronized.

changelog: none

r? @flip1995
-rw-r--r--.github/workflows/clippy_changelog.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/clippy_changelog.yml b/.github/workflows/clippy_changelog.yml
index c08abd15517..6df5a48c75f 100644
--- a/.github/workflows/clippy_changelog.yml
+++ b/.github/workflows/clippy_changelog.yml
@@ -3,7 +3,7 @@ name: Clippy changelog check
 on:
   merge_group:
   pull_request:
-    types: [opened, reopened, edited]
+    types: [opened, reopened, synchronize, edited]
 
 concurrency:
   # For a given workflow, if we push to the same PR, cancel all previous builds on that PR.