From 475dd81f65fe9513a0063b7c4e19e82933bac4f2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 19:07:25 +0000 Subject: [PATCH 1/2] Initial plan From 3c2276013566c1f4577ab548e3243c1d7547ad75 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 19:09:55 +0000 Subject: [PATCH 2/2] Fix shellcheck SC2086 errors in publish.yml: double-quote variables Co-authored-by: csparker247 <1434526+csparker247@users.noreply.github.com> --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index abd4cfb..613d9a4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -22,7 +22,7 @@ jobs: PULL_REQUEST: ${{ github.event.pull_request.number }} run: | brew tap Homebrew/core - brew pr-pull --debug --tap=$GITHUB_REPOSITORY $PULL_REQUEST + brew pr-pull --debug --tap="$GITHUB_REPOSITORY" "$PULL_REQUEST" - name: Push commits uses: Homebrew/actions/git-try-push@main @@ -34,4 +34,4 @@ jobs: if: github.event.pull_request.head.repo.fork == false env: BRANCH: ${{ github.event.pull_request.head.ref }} - run: git push --delete origin $BRANCH + run: git push --delete origin "$BRANCH"