mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 21:08:44 +01:00
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
This commit is contained in:
parent
331ecedc06
commit
d3c4fc0df9
1
.github/workflows/coding-standards.yml
vendored
1
.github/workflows/coding-standards.yml
vendored
@ -193,7 +193,6 @@ jobs:
|
||||
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
|
||||
with:
|
||||
retries: 2
|
||||
retryAfter: 10
|
||||
retry-exempt-status-codes: 418
|
||||
script: |
|
||||
github.rest.actions.createWorkflowDispatch({
|
||||
|
1
.github/workflows/end-to-end-tests.yml
vendored
1
.github/workflows/end-to-end-tests.yml
vendored
@ -149,7 +149,6 @@ jobs:
|
||||
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
|
||||
with:
|
||||
retries: 2
|
||||
retryAfter: 10
|
||||
retry-exempt-status-codes: 418
|
||||
script: |
|
||||
github.rest.actions.createWorkflowDispatch({
|
||||
|
1
.github/workflows/failed-workflow.yml
vendored
1
.github/workflows/failed-workflow.yml
vendored
@ -27,7 +27,6 @@ jobs:
|
||||
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
|
||||
with:
|
||||
retries: 2
|
||||
retryAfter: 10
|
||||
retry-exempt-status-codes: 418
|
||||
script: |
|
||||
const workflow_run = await github.rest.actions.getWorkflowRun({
|
||||
|
1
.github/workflows/javascript-tests.yml
vendored
1
.github/workflows/javascript-tests.yml
vendored
@ -117,7 +117,6 @@ jobs:
|
||||
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
|
||||
with:
|
||||
retries: 2
|
||||
retryAfter: 10
|
||||
retry-exempt-status-codes: 418
|
||||
script: |
|
||||
github.rest.actions.createWorkflowDispatch({
|
||||
|
1
.github/workflows/php-compatibility.yml
vendored
1
.github/workflows/php-compatibility.yml
vendored
@ -133,7 +133,6 @@ jobs:
|
||||
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
|
||||
with:
|
||||
retries: 2
|
||||
retryAfter: 10
|
||||
retry-exempt-status-codes: 418
|
||||
script: |
|
||||
github.rest.actions.createWorkflowDispatch({
|
||||
|
1
.github/workflows/phpunit-tests.yml
vendored
1
.github/workflows/phpunit-tests.yml
vendored
@ -264,7 +264,6 @@ jobs:
|
||||
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
|
||||
with:
|
||||
retries: 2
|
||||
retryAfter: 10
|
||||
retry-exempt-status-codes: 418
|
||||
script: |
|
||||
github.rest.actions.createWorkflowDispatch({
|
||||
|
2
.github/workflows/slack-notifications.yml
vendored
2
.github/workflows/slack-notifications.yml
vendored
@ -56,7 +56,6 @@ jobs:
|
||||
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
|
||||
with:
|
||||
retries: 2
|
||||
retryAfter: 10
|
||||
retry-exempt-status-codes: 418
|
||||
script: |
|
||||
const workflow_run = await github.rest.actions.getWorkflowRun({
|
||||
@ -123,7 +122,6 @@ jobs:
|
||||
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
|
||||
with:
|
||||
retries: 2
|
||||
retryAfter: 10
|
||||
retry-exempt-status-codes: 418
|
||||
script: |
|
||||
const commit_details = await github.rest.repos.getCommit({
|
||||
|
1
.github/workflows/test-coverage.yml
vendored
1
.github/workflows/test-coverage.yml
vendored
@ -212,7 +212,6 @@ jobs:
|
||||
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
|
||||
with:
|
||||
retries: 2
|
||||
retryAfter: 10
|
||||
retry-exempt-status-codes: 418
|
||||
script: |
|
||||
github.rest.actions.createWorkflowDispatch({
|
||||
|
1
.github/workflows/test-npm.yml
vendored
1
.github/workflows/test-npm.yml
vendored
@ -191,7 +191,6 @@ jobs:
|
||||
uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
|
||||
with:
|
||||
retries: 2
|
||||
retryAfter: 10
|
||||
retry-exempt-status-codes: 418
|
||||
script: |
|
||||
github.rest.actions.createWorkflowDispatch({
|
||||
|
1
.github/workflows/test-old-branches.yml
vendored
1
.github/workflows/test-old-branches.yml
vendored
@ -71,7 +71,6 @@ jobs:
|
||||
if: ${{ github.event_name == 'push' || github.event.schedule == '0 0 15 * *' || matrix.branch == '6.0' }}
|
||||
with:
|
||||
retries: 2
|
||||
retryAfter: 10
|
||||
retry-exempt-status-codes: 418
|
||||
script: |
|
||||
github.rest.actions.createWorkflowDispatch({
|
||||
|
Loading…
x
Reference in New Issue
Block a user