We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9c0c3b commit 82341c5Copy full SHA for 82341c5
.github/workflows/publish.yml
@@ -20,7 +20,7 @@ jobs:
20
HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{ github.token }}
21
HOMEBREW_GITHUB_PACKAGES_USER: ${{ github.actor }}
22
PULL_REQUEST: ${{ github.event.pull_request.number }}
23
- run: brew pr-pull --debug --tap=$GITHUB_REPOSITORY $PULL_REQUEST
+ run: brew pr-pull --debug --tap="$GITHUB_REPOSITORY" "$PULL_REQUEST"
24
25
- name: Push commits
26
uses: Homebrew/actions/git-try-push@master
@@ -32,4 +32,4 @@ jobs:
32
if: github.event.pull_request.head.repo.fork == false
33
env:
34
BRANCH: ${{ github.event.pull_request.head.ref }}
35
- run: git push --delete origin $BRANCH
+ run: git push --delete origin "$BRANCH"
0 commit comments