Merge branch 'main' into next

This commit is contained in:
nocobase[bot] 2025-02-24 01:56:51 +00:00
commit c9c7531946

View File

@ -164,7 +164,7 @@ async function getPRList(from, to, cwd) {
const { stdout: logs } = await execa('git', ['log', `${from}..${to}`, '--pretty=format:%s'], { cwd });
const prs = [];
for (const log of logs.split('\n')) {
const match = log.match(/\(#(\d+)\)/);
const match = log.match(/#(\d+)/);
if (match) {
prs.push(match[1]);
}