Skip to content

Commit d3c4fc0

Browse files
committed
Build/Test Tools: Remove the retryAfter input.
This was included in the original pull request that aimed to add support for `octokit/plugin-retry.js` in `actions/github-scripts`, but was actually removed before being merged. Follow up to [54342]. See #55652. git-svn-id: https://develop.svn.wordpress.org/trunk@54343 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 331eced commit d3c4fc0

10 files changed

+0
-11
lines changed

.github/workflows/coding-standards.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@ jobs:
193193
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
194194
with:
195195
retries: 2
196-
retryAfter: 10
197196
retry-exempt-status-codes: 418
198197
script: |
199198
github.rest.actions.createWorkflowDispatch({

.github/workflows/end-to-end-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@ jobs:
149149
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
150150
with:
151151
retries: 2
152-
retryAfter: 10
153152
retry-exempt-status-codes: 418
154153
script: |
155154
github.rest.actions.createWorkflowDispatch({

.github/workflows/failed-workflow.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
2828
with:
2929
retries: 2
30-
retryAfter: 10
3130
retry-exempt-status-codes: 418
3231
script: |
3332
const workflow_run = await github.rest.actions.getWorkflowRun({

.github/workflows/javascript-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ jobs:
117117
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
118118
with:
119119
retries: 2
120-
retryAfter: 10
121120
retry-exempt-status-codes: 418
122121
script: |
123122
github.rest.actions.createWorkflowDispatch({

.github/workflows/php-compatibility.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ jobs:
133133
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
134134
with:
135135
retries: 2
136-
retryAfter: 10
137136
retry-exempt-status-codes: 418
138137
script: |
139138
github.rest.actions.createWorkflowDispatch({

.github/workflows/phpunit-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,6 @@ jobs:
264264
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
265265
with:
266266
retries: 2
267-
retryAfter: 10
268267
retry-exempt-status-codes: 418
269268
script: |
270269
github.rest.actions.createWorkflowDispatch({

.github/workflows/slack-notifications.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ jobs:
5656
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
5757
with:
5858
retries: 2
59-
retryAfter: 10
6059
retry-exempt-status-codes: 418
6160
script: |
6261
const workflow_run = await github.rest.actions.getWorkflowRun({
@@ -123,7 +122,6 @@ jobs:
123122
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
124123
with:
125124
retries: 2
126-
retryAfter: 10
127125
retry-exempt-status-codes: 418
128126
script: |
129127
const commit_details = await github.rest.repos.getCommit({

.github/workflows/test-coverage.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ jobs:
212212
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
213213
with:
214214
retries: 2
215-
retryAfter: 10
216215
retry-exempt-status-codes: 418
217216
script: |
218217
github.rest.actions.createWorkflowDispatch({

.github/workflows/test-npm.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ jobs:
191191
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
192192
with:
193193
retries: 2
194-
retryAfter: 10
195194
retry-exempt-status-codes: 418
196195
script: |
197196
github.rest.actions.createWorkflowDispatch({

.github/workflows/test-old-branches.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ jobs:
7171
if: ${{ github.event_name == 'push' || github.event.schedule == '0 0 15 * *' || matrix.branch == '6.0' }}
7272
with:
7373
retries: 2
74-
retryAfter: 10
7574
retry-exempt-status-codes: 418
7675
script: |
7776
github.rest.actions.createWorkflowDispatch({

0 commit comments

Comments
 (0)