Make WordPress Core


Ignore:
Timestamp:
01/22/2025 07:24:48 PM (14 months ago)
Author:
johnbillion
Message:

Build/Test Tools: Coerce the run_id input to a string before passing it to the "Failed Workflow" workflow.

Follow-up to [59679].

See #62221

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/slack-notifications.yml

    r59681 r59687  
    6969              owner: context.repo.owner,
    7070              repo: context.repo.repo,
    71               run_id: context.runId,
     71              run_id: `${context.runId}`,
    7272            });
    7373
     
    8383                owner: context.repo.owner,
    8484                repo: context.repo.repo,
    85                 run_id: context.runId,
     85                run_id: `${context.runId}`,
    8686                attempt_number: workflow_run.data.run_attempt - 1
    8787              });
Note: See TracChangeset for help on using the changeset viewer.