-
Notifications
You must be signed in to change notification settings - Fork 77
Description
We're in the middle of a migration between the Mend-hosted (SAAS) renovate[bot]
and a self-hosted Renovate bot, running under Mend Renovate Community Edition, all on github.com
.
As part of this, we've got the following configuration set in our config.js
:
// Via https://docs.renovatebot.com/configuration-options/#gitignoredauthors
gitIgnoredAuthors: [
"29139614+renovate[bot]@users.noreply.github.com"
],
// Via https://docs.renovatebot.com/configuration-options/#ignoreprauthor
ignorePrAuthor: true,
We have a number of Dependency Dashboard issues that were created by renovate[bot]
and are continued to be updated by our self-hosted bot.
When ticking a checkbox on an issue, such as:
- Check this box to trigger a request for Renovate to run again on this repository
We receive no feedback from Renovate, nor does it execute the run as expected.
Digging into the logs, we see that Mend Renovate Community Edition is ignoring the event as a non-bot GitHub issue
:
{
"action": "edited",
"event": "issues",
"hostname": "...",
"level": 20,
"logContext": "fpRoibtl4TVq2f4SB5nzO",
"msg": "non-bot GitHub issue - ignoring event",
"name": "mend-renovate",
"pid": 9,
"time": "2024-08-14T10:05:14.634Z",
"user": "renovate[bot]",
"v": 0
}
Pull Requests are unaffected, and continue to be updated as-is.
Would it make sense for the Mend Renovate Community Edition code to make this configurable - somehow 🫣 - to make it so a migration is possible?
This is using Mend Renovate Community Edition 7.5.0
(I believe this is more likely to be an issue with Mend Renovate Community Edition, than it is Renovate OSS, due to it being webhook related, hence raising here)
(possibly related to #557)