diff options
| author | Philipp Krones <hello@philkrones.com> | 2025-01-10 17:47:26 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-10 17:47:26 +0000 |
| commit | 8678f9cdb6b1f9f0182f51c2cabd44648eb8a9a5 (patch) | |
| tree | 93ac679f1989f48d6f882014d2741ad8b6d86e55 | |
| parent | fc0e65d15731f34fc28514de1800477d1ba479b9 (diff) | |
| parent | 1bdee5b6b39f526dc5697f3938acf675d8be1f43 (diff) | |
| download | rust-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.yml | 2 |
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. |
