Skip to content

Commit 6e97c84

Browse files
authored
Merge pull request #8 from Moshbbab/copilot/fix-bump-go-script-repo-reference
fix: correct hardcoded repo reference in bump-go.sh
2 parents ac0f2a2 + 0ced424 commit 6e97c84

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/scripts/bump-go.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ COMMIT_HASH=$(git rev-parse --short HEAD)
9090
PR_TITLE="$COMMIT_MSG"
9191

9292
# ---- Check for existing PR --------------------------------------------------
93-
existing_pr=$(gh search prs --repo cli/cli --match title "$PR_TITLE" --json title --jq "map(select(.title == \"$PR_TITLE\") | .title) | length > 0")
93+
existing_pr=$(gh search prs --repo Moshbbab/cli --match title "$PR_TITLE" --json title --jq "map(select(.title == \"$PR_TITLE\") | .title) | length > 0")
9494

9595
if [[ "$existing_pr" == "true" ]]; then
9696
echo "Found an existing open PR titled '$PR_TITLE'. Skipping push/PR creation."

0 commit comments

Comments
 (0)