[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
This commit is contained in:
Y0SH1M4S73R
2026-02-28 21:33:21 -05:00
committed by GitHub
parent 5fe3ff00c2
commit 67a9bd2369
+3 -2
View File
@@ -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