[CI] test committed
This commit is contained in:
parent
34aa40e9cf
commit
520a38ebd2
7
dist/index.js
vendored
7
dist/index.js
vendored
@ -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
1
report.txt
Normal file
@ -0,0 +1 @@
|
||||
1769006759
|
||||
Loading…
x
Reference in New Issue
Block a user