From fef1981d7f2034541b69c70996fe54c975db6eb9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 04:35:59 +0000 Subject: [PATCH 1/2] Initial plan From 70d34a077dc958e8e4c75772210d75fa37ab3115 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 04:37:29 +0000 Subject: [PATCH 2/2] Fix bump-go workflow: disable cache and use dynamic repo reference Co-authored-by: darkangelpraha <183031713+darkangelpraha@users.noreply.github.com> --- .github/workflows/bump-go.yml | 1 + .github/workflows/scripts/bump-go.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bump-go.yml b/.github/workflows/bump-go.yml index 3358b81aa50..8dba1c042cf 100644 --- a/.github/workflows/bump-go.yml +++ b/.github/workflows/bump-go.yml @@ -16,6 +16,7 @@ jobs: uses: actions/setup-go@v5 with: go-version-file: 'go.mod' + cache: false - name: Bump Go version env: diff --git a/.github/workflows/scripts/bump-go.sh b/.github/workflows/scripts/bump-go.sh index f0762f3d3c2..a5d59d5751c 100755 --- a/.github/workflows/scripts/bump-go.sh +++ b/.github/workflows/scripts/bump-go.sh @@ -90,7 +90,7 @@ COMMIT_HASH=$(git rev-parse --short HEAD) PR_TITLE="$COMMIT_MSG" # ---- Check for existing PR -------------------------------------------------- -existing_pr=$(gh search prs --repo cli/cli --match title "$PR_TITLE" --json title --jq "map(select(.title == \"$PR_TITLE\") | .title) | length > 0") +existing_pr=$(gh search prs --repo "$GITHUB_REPOSITORY" --match title "$PR_TITLE" --json title --jq "map(select(.title == \"$PR_TITLE\") | .title) | length > 0") if [[ "$existing_pr" == "true" ]]; then echo "Found an existing open PR titled '$PR_TITLE'. Skipping push/PR creation."