about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2025-01-10 18:17:55 +0100
committerSamuel Tardieu <sam@rfc1149.net>2025-01-10 18:17:55 +0100
commit1bdee5b6b39f526dc5697f3938acf675d8be1f43 (patch)
tree93ac679f1989f48d6f882014d2741ad8b6d86e55
parentfc0e65d15731f34fc28514de1800477d1ba479b9 (diff)
downloadrust-1bdee5b6b39f526dc5697f3938acf675d8be1f43.tar.gz
rust-1bdee5b6b39f526dc5697f3938acf675d8be1f43.zip
CI: rerun the changelog check on PR synchronization
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.
-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.