1
Fork 0

Rollup merge of #138335 - jieyouxu:fix-citool, r=marcoieni

Fix post-merge workflow

The command is called `post-merge-report` not `post-merge-analysis`. See 90384941aa/src/ci/citool/src/main.rs (L379)

Noticed it failing in https://github.com/rust-lang/rust/pull/138310#issuecomment-2711917033.

r? ``@Kobzol`` (or ``@marcoieni)``
This commit is contained in:
Jakub Beránek 2025-03-11 13:30:57 +01:00 committed by GitHub
commit 64c6ec5bef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -36,7 +36,7 @@ jobs:
cd src/ci/citool cd src/ci/citool
echo "Post-merge analysis result" > output.log echo "Post-merge analysis result" > output.log
cargo run --release post-merge-analysis ${PARENT_COMMIT} ${{ github.sha }} >> output.log cargo run --release post-merge-report ${PARENT_COMMIT} ${{ github.sha }} >> output.log
cat output.log cat output.log
gh pr comment ${HEAD_PR} -F output.log gh pr comment ${HEAD_PR} -F output.log