From e4651627342dab457ed3f789d42392a72492ebba Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 24 Sep 2024 19:25:03 +0800 Subject: [PATCH] sponsors-maintainers-man-completions: fix unbound variable https://github.com/Homebrew/brew/actions/runs/11012718453/job/30579518221#step:6:106 --- .github/workflows/sponsors-maintainers-man-completions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sponsors-maintainers-man-completions.yml b/.github/workflows/sponsors-maintainers-man-completions.yml index 173bd6c46261d..5990ff9b95d39 100644 --- a/.github/workflows/sponsors-maintainers-man-completions.yml +++ b/.github/workflows/sponsors-maintainers-man-completions.yml @@ -108,7 +108,7 @@ jobs: COMMITTED=true fi - if [[ -n "$COMMITTED" ]] + if [[ -n "${COMMITTED-}" ]] then echo "committed=true" >> "$GITHUB_OUTPUT" PULL_REQUEST_STATE="$(gh pr view --json=state | jq -r ".state")"