I need to add some prefix when the scenario used retry plugin for each case in my report like this

Is it possible?
My simple test
const { configuration, I } = inject()
let tries = 0
Feature('Retry in workers').retry(configuration.reRunTimes)
codeceptjs.event.dispatcher.on(codeceptjs.event.test.passed, (test) => {
const retryTimes = test.retryNum
const msgRetry = `Retry ${retryTimes} times`
if (retryTimes > 0) {
I.say(msgRetry)
}
test.title = 'new test'
})
Scenario('Passed scenario', () => {
I.assertEqual(tries, 0)
}).tag('retryTest')
Scenario('Flaky scenario', () => {
tries++
I.assertEqual(tries, 3)
}).tag('retryTest')