[CI] test built

This commit is contained in:
peter-evans 2026-01-21 14:45:55 +00:00 committed by github-actions[bot]
parent 34aa40e9cf
commit a02095c015
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
// '--force-with-lease' fails due to "stale info."
// 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();
// Apply the branch suffix if set

1
report.txt Normal file
View File

@ -0,0 +1 @@
1769006755