File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -267,10 +267,15 @@ jobs:
267
267
with :
268
268
path : base-branch-content
269
269
ref : ${{ github.event.pull_request.base.sha }}
270
- - name : Check API changes
271
- run : |
272
- mkdir api-validation-projects
273
- npx tsx scripts/check_api_changes.ts base-branch-content api-validation-projects
270
+ - name : Check API changes with retry
271
+ uses : nick-fields/retry@v3
272
+ with :
273
+ timeout_minutes : 20
274
+ max_attempts : 3
275
+ retry_wait_seconds : 30
276
+ command : |
277
+ mkdir -p api-validation-projects
278
+ npx tsx scripts/check_api_changes.ts base-branch-content api-validation-projects
274
279
handle_dependabot_version_update :
275
280
if : github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]'
276
281
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments