diff --git a/.github/actions/rtc-auto-bounty/award_rtc.py b/.github/actions/rtc-auto-bounty/award_rtc.py index 5320c5519..bcea3e1df 100644 --- a/.github/actions/rtc-auto-bounty/award_rtc.py +++ b/.github/actions/rtc-auto-bounty/award_rtc.py @@ -56,8 +56,10 @@ # Wallet: RTCxxxx... # wallet: my-github-username # .rtc-wallet: RTCxxxx... +# Payout wallet: RTCxxxx... +# miner_id: RTCxxxx... _WALLET_RE = re.compile( - r"(?:^|\n)\s*(?:wallet|\.rtc-wallet)\s*:\s*(\S+)\s*(?:\n|$)", + r"(?:^|\n)\s*(?:wallet|\.rtc-wallet|payout\s*wallet|payout\s*address|rtc\s*wallet|miner_id|rtc_wallet)\s*[:=]\s*(\S+)\s*(?:\n|$)", re.IGNORECASE, )