- Timestamp:
- 01/22/2025 07:24:48 PM (6 months ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r59679 r59687 108 108 ref: 'trunk', 109 109 inputs: { 110 run_id: context.runId,110 run_id: `${context.runId}`, 111 111 } 112 112 }); -
trunk/.github/workflows/end-to-end-tests.yml
r59679 r59687 94 94 ref: 'trunk', 95 95 inputs: { 96 run_id: context.runId,96 run_id: `${context.runId}`, 97 97 } 98 98 }); -
trunk/.github/workflows/install-testing.yml
r59679 r59687 180 180 ref: 'trunk', 181 181 inputs: { 182 run_id: context.runId,182 run_id: `${context.runId}`, 183 183 } 184 184 }); -
trunk/.github/workflows/javascript-tests.yml
r59679 r59687 98 98 ref: 'trunk', 99 99 inputs: { 100 run_id: context.runId,100 run_id: `${context.runId}`, 101 101 } 102 102 }); -
trunk/.github/workflows/local-docker-environment.yml
r59679 r59687 151 151 ref: 'trunk', 152 152 inputs: { 153 run_id: context.runId,153 run_id: `${context.runId}`, 154 154 } 155 155 }); -
trunk/.github/workflows/performance.yml
r59679 r59687 94 94 ref: 'trunk', 95 95 inputs: { 96 run_id: context.runId,96 run_id: `${context.runId}`, 97 97 } 98 98 }); -
trunk/.github/workflows/php-compatibility.yml
r59679 r59687 95 95 ref: 'trunk', 96 96 inputs: { 97 run_id: context.runId,97 run_id: `${context.runId}`, 98 98 } 99 99 }); -
trunk/.github/workflows/phpunit-tests.yml
r59679 r59687 264 264 ref: 'trunk', 265 265 inputs: { 266 run_id: context.runId,266 run_id: `${context.runId}`, 267 267 } 268 268 }); -
trunk/.github/workflows/slack-notifications.yml
r59681 r59687 69 69 owner: context.repo.owner, 70 70 repo: context.repo.repo, 71 run_id: context.runId,71 run_id: `${context.runId}`, 72 72 }); 73 73 … … 83 83 owner: context.repo.owner, 84 84 repo: context.repo.repo, 85 run_id: context.runId,85 run_id: `${context.runId}`, 86 86 attempt_number: workflow_run.data.run_attempt - 1 87 87 }); -
trunk/.github/workflows/test-and-zip-default-themes.yml
r59679 r59687 247 247 ref: 'trunk', 248 248 inputs: { 249 run_id: '${{ github.run_id }}'249 run_id: `${context.runId}`, 250 250 } 251 251 }); -
trunk/.github/workflows/test-build-processes.yml
r59673 r59687 161 161 ref: 'trunk', 162 162 inputs: { 163 run_id: '${{ github.run_id }}'163 run_id: `${context.runId}`, 164 164 } 165 165 }); -
trunk/.github/workflows/test-coverage.yml
r59673 r59687 111 111 ref: 'trunk', 112 112 inputs: { 113 run_id: '${{ github.run_id }}'113 run_id: `${context.runId}`, 114 114 } 115 115 }); -
trunk/.github/workflows/upgrade-testing.yml
r59679 r59687 313 313 ref: 'trunk', 314 314 inputs: { 315 run_id: '${{ github.run_id }}'315 run_id: `${context.runId}`, 316 316 } 317 317 });
Note: See TracChangeset
for help on using the changeset viewer.