From ef1d589caad6e7d39cfd2e6f0c131ad1b5ee979f Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Wed, 20 Apr 2022 14:04:02 +0200 Subject: [PATCH] ci: use `requeue` instead of `refresh` for re-adding PRs to the queue The current version of Mergify provides a `requeue` command in addition to `refresh`. After a CI job failed, the PR needs to be re-added to the queue, so the `requeue` command is more appropriate. Signed-off-by: Niels de Vos --- actions/retest/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/retest/main.go b/actions/retest/main.go index a3b85042e..cc02cd4c2 100644 --- a/actions/retest/main.go +++ b/actions/retest/main.go @@ -181,8 +181,8 @@ func main() { } if failedTestFound { - // comment `@Mergifyio refresh` so mergifyio adds the pr back into the queue. - msg := "@Mergifyio refresh" + // comment `@Mergifyio requeue` so mergifyio adds the pr back into the queue. + msg := "@Mergifyio requeue" comment := &github.IssueComment{ Body: github.String(msg), }