Changeset 54342
- Timestamp:
- 09/28/2022 01:53:48 AM (2 years ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r54313 r54342 191 191 steps: 192 192 - name: Dispatch workflow run 193 uses: actions/github-script@c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v6.2.0 194 with: 193 uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0 194 with: 195 retries: 2 196 retryAfter: 10 197 retry-exempt-status-codes: 418 195 198 script: | 196 199 github.rest.actions.createWorkflowDispatch({ -
trunk/.github/workflows/end-to-end-tests.yml
r54108 r54342 147 147 steps: 148 148 - name: Dispatch workflow run 149 uses: actions/github-script@ c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v6.2.0149 uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0 150 150 with: 151 retries: 2 152 retryAfter: 10 153 retry-exempt-status-codes: 418 151 154 script: | 152 155 github.rest.actions.createWorkflowDispatch({ -
trunk/.github/workflows/failed-workflow.yml
r54264 r54342 25 25 steps: 26 26 - name: Rerun a workflow 27 uses: actions/github-script@ c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v6.2.027 uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0 28 28 with: 29 retries: 2 30 retryAfter: 10 31 retry-exempt-status-codes: 418 29 32 script: | 30 33 const workflow_run = await github.rest.actions.getWorkflowRun({ -
trunk/.github/workflows/javascript-tests.yml
r54108 r54342 115 115 steps: 116 116 - name: Dispatch workflow run 117 uses: actions/github-script@ c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v6.2.0117 uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0 118 118 with: 119 retries: 2 120 retryAfter: 10 121 retry-exempt-status-codes: 418 119 122 script: | 120 123 github.rest.actions.createWorkflowDispatch({ -
trunk/.github/workflows/php-compatibility.yml
r54313 r54342 131 131 steps: 132 132 - name: Dispatch workflow run 133 uses: actions/github-script@ c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v6.2.0133 uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0 134 134 with: 135 retries: 2 136 retryAfter: 10 137 retry-exempt-status-codes: 418 135 138 script: | 136 139 github.rest.actions.createWorkflowDispatch({ -
trunk/.github/workflows/phpunit-tests.yml
r54108 r54342 262 262 steps: 263 263 - name: Dispatch workflow run 264 uses: actions/github-script@c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v6.2.0 265 with: 264 uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0 265 with: 266 retries: 2 267 retryAfter: 10 268 retry-exempt-status-codes: 418 266 269 script: | 267 270 github.rest.actions.createWorkflowDispatch({ -
trunk/.github/workflows/slack-notifications.yml
r53947 r54342 54 54 - name: Determine the status of the previous attempt 55 55 id: previous-attempt-result 56 uses: actions/github-script@c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v6.2.0 57 with: 56 uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0 57 with: 58 retries: 2 59 retryAfter: 10 60 retry-exempt-status-codes: 418 58 61 script: | 59 62 const workflow_run = await github.rest.actions.getWorkflowRun({ … … 117 120 - name: Get the commit message 118 121 id: current-commit-message 119 uses: actions/github-script@ c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v6.2.0122 uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0 120 123 if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }} 121 124 with: 125 retries: 2 126 retryAfter: 10 127 retry-exempt-status-codes: 418 122 128 script: | 123 129 const commit_details = await github.rest.repos.getCommit({ -
trunk/.github/workflows/test-coverage.yml
r54108 r54342 210 210 steps: 211 211 - name: Dispatch workflow run 212 uses: actions/github-script@c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v6.2.0 213 with: 212 uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0 213 with: 214 retries: 2 215 retryAfter: 10 216 retry-exempt-status-codes: 418 214 217 script: | 215 218 github.rest.actions.createWorkflowDispatch({ -
trunk/.github/workflows/test-npm.yml
r54297 r54342 189 189 steps: 190 190 - name: Dispatch workflow run 191 uses: actions/github-script@ c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v6.2.0191 uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0 192 192 with: 193 retries: 2 194 retryAfter: 10 195 retry-exempt-status-codes: 418 193 196 script: | 194 197 github.rest.actions.createWorkflowDispatch({ -
trunk/.github/workflows/test-old-branches.yml
r54108 r54342 68 68 steps: 69 69 - name: Dispatch workflow run 70 uses: actions/github-script@ c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v6.2.070 uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0 71 71 if: ${{ github.event_name == 'push' || github.event.schedule == '0 0 15 * *' || matrix.branch == '6.0' }} 72 72 with: 73 retries: 2 74 retryAfter: 10 75 retry-exempt-status-codes: 418 73 76 script: | 74 77 github.rest.actions.createWorkflowDispatch({
Note: See TracChangeset
for help on using the changeset viewer.