Skip to content

Commit fc5a712

Browse files
authored
Add placeholder workflow for retrying test failures. (#931)
1 parent 3d2cea3 commit fc5a712

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Retry Test Failures
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
run_id:
6+
description: 'Run ID to check and retry'
7+
default: ''
8+
required: true
9+
jobs:
10+
check_results_and_retry_if_needed:
11+
name: check-results-and-retry-if-needed
12+
runs-on: ubuntu-20.04
13+
if:
14+
steps:
15+
- name: No-op
16+
run: true

0 commit comments

Comments
 (0)