From 67a9bd2369b951b34daef524bfff103fcd295c2d Mon Sep 17 00:00:00 2001 From: Y0SH1M4S73R Date: Sat, 28 Feb 2026 21:33:21 -0500 Subject: [PATCH] [NO GBP] Hotfix for the autostale workflow (#95279) ## About The Pull Request I was using the wrong context in the expressions for the announcement job ## Why It's Good For The Game While the real meat and potatoes of the autostale workflow still works, we don't want the workflow showing up as failed. ## Changelog No player-facing changes --- .github/workflows/stale.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 72f1b8f3e72..627a803794d 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -44,9 +44,10 @@ jobs: announce: runs-on: ubuntu-24.04 - if: ${{ jobs.stale.outputs.staled_prs != '[]' }} + needs: stale + if: ${{ needs.stale.outputs.staled_prs != '[]' }} matrix: - pull_request: ${{ fromJSON(jobs.stale.outputs.staled_prs) }} + pull_request: ${{ fromJSON(needs.stale.outputs.staled_prs) }} steps: - name: "Check for DISCORD_WEBHOOK" id: secrets_set