[CI] test committed

This commit is contained in:
peter-evans 2026-01-21 14:45:59 +00:00 committed by github-actions[bot]
parent 34aa40e9cf
commit 520a38ebd2
2 changed files with 7 additions and 1 deletions

7
dist/index.js vendored
View File

@ -458,7 +458,12 @@ function createPullRequest(inputs) {
// deleted after being merged or closed. Without this the push using // deleted after being merged or closed. Without this the push using
// '--force-with-lease' fails due to "stale info." // '--force-with-lease' fails due to "stale info."
// https://github.com/peter-evans/create-pull-request/issues/633 // https://github.com/peter-evans/create-pull-request/issues/633
yield git.exec(['remote', 'prune', branchRemoteName]); try {
yield git.exec(['remote', 'prune', branchRemoteName]);
}
catch (error) {
core.warning(`Failed to prune remote '${branchRemoteName}': ${error.message}`);
}
} }
core.endGroup(); core.endGroup();
// Apply the branch suffix if set // Apply the branch suffix if set

1
report.txt Normal file
View File

@ -0,0 +1 @@
1769006759