From 520a38ebd2de6f5bfcacf16c1288e23c3138bdc3 Mon Sep 17 00:00:00 2001 From: peter-evans <18365890+peter-evans@users.noreply.github.com> Date: Wed, 21 Jan 2026 14:45:59 +0000 Subject: [PATCH] [CI] test committed --- dist/index.js | 7 ++++++- report.txt | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 report.txt diff --git a/dist/index.js b/dist/index.js index fb93d046..b26dca23 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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 diff --git a/report.txt b/report.txt new file mode 100644 index 00000000..7f76a01c --- /dev/null +++ b/report.txt @@ -0,0 +1 @@ +1769006759