Make WordPress Core

Changeset 59687 for trunk


Ignore:
Timestamp:
01/22/2025 07:24:48 PM (6 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

Location:
trunk/.github/workflows
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/coding-standards.yml

    r59679 r59687  
    108108              ref: 'trunk',
    109109              inputs: {
    110                 run_id: context.runId,
     110                run_id: `${context.runId}`,
    111111              }
    112112            });
  • trunk/.github/workflows/end-to-end-tests.yml

    r59679 r59687  
    9494              ref: 'trunk',
    9595              inputs: {
    96                 run_id: context.runId,
     96                run_id: `${context.runId}`,
    9797              }
    9898            });
  • trunk/.github/workflows/install-testing.yml

    r59679 r59687  
    180180              ref: 'trunk',
    181181              inputs: {
    182                 run_id: context.runId,
     182                run_id: `${context.runId}`,
    183183              }
    184184            });
  • trunk/.github/workflows/javascript-tests.yml

    r59679 r59687  
    9898              ref: 'trunk',
    9999              inputs: {
    100                 run_id: context.runId,
     100                run_id: `${context.runId}`,
    101101              }
    102102            });
  • trunk/.github/workflows/local-docker-environment.yml

    r59679 r59687  
    151151              ref: 'trunk',
    152152              inputs: {
    153                 run_id: context.runId,
     153                run_id: `${context.runId}`,
    154154              }
    155155            });
  • trunk/.github/workflows/performance.yml

    r59679 r59687  
    9494              ref: 'trunk',
    9595              inputs: {
    96                 run_id: context.runId,
     96                run_id: `${context.runId}`,
    9797              }
    9898            });
  • trunk/.github/workflows/php-compatibility.yml

    r59679 r59687  
    9595              ref: 'trunk',
    9696              inputs: {
    97                 run_id: context.runId,
     97                run_id: `${context.runId}`,
    9898              }
    9999            });
  • trunk/.github/workflows/phpunit-tests.yml

    r59679 r59687  
    264264              ref: 'trunk',
    265265              inputs: {
    266                 run_id: context.runId,
     266                run_id: `${context.runId}`,
    267267              }
    268268            });
  • 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              });
  • trunk/.github/workflows/test-and-zip-default-themes.yml

    r59679 r59687  
    247247              ref: 'trunk',
    248248              inputs: {
    249                 run_id: '${{ github.run_id }}'
     249                run_id: `${context.runId}`,
    250250              }
    251251            });
  • trunk/.github/workflows/test-build-processes.yml

    r59673 r59687  
    161161              ref: 'trunk',
    162162              inputs: {
    163                 run_id: '${{ github.run_id }}'
     163                run_id: `${context.runId}`,
    164164              }
    165165            });
  • trunk/.github/workflows/test-coverage.yml

    r59673 r59687  
    111111              ref: 'trunk',
    112112              inputs: {
    113                 run_id: '${{ github.run_id }}'
     113                run_id: `${context.runId}`,
    114114              }
    115115            });
  • trunk/.github/workflows/upgrade-testing.yml

    r59679 r59687  
    313313              ref: 'trunk',
    314314              inputs: {
    315                 run_id: '${{ github.run_id }}'
     315                run_id: `${context.runId}`,
    316316              }
    317317            });
Note: See TracChangeset for help on using the changeset viewer.