From 06d4b948460d6b172c950065fc31f8ad2da4e9ca Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 10 Oct 2024 12:34:48 -0400 Subject: [PATCH] Attempt to fix PR sender job --- .github/workflows/auto-pr.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-pr.yml b/.github/workflows/auto-pr.yml index cfefa8a1..d4e42b32 100644 --- a/.github/workflows/auto-pr.yml +++ b/.github/workflows/auto-pr.yml @@ -55,8 +55,9 @@ jobs: if: runner.os != 'Linux' run: | # Workaround GitHub Actions Python issues - # Copied from: https://github.com/Homebrew/brew/blob/6170b6297c61ef0b68814c708eeff2199d8b0d11/.github/workflows/tests.yml#L353 - brew unlink python && brew link --overwrite python + # Adapted from: https://github.com/Homebrew/brew/blob/6170b6297c61ef0b68814c708eeff2199d8b0d11/.github/workflows/tests.yml#L353 + brew unlink python || true + brew link --overwrite python - name: Install Homebrew Bundler RubyGems if: steps.cache.outputs.cache-hit != 'true'