Skip to content

Commit 1b0ee24

Browse files
committed
Add stub workflow.
1 parent a9c3d19 commit 1b0ee24

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
10+
jobs:
11+
check_results_and_retry_if_needed:
12+
name: check-results-and-retry-if-needed
13+
runs-on: ubuntu-20.04
14+
if:
15+
steps:
16+
- name: No-op
17+
run: true

0 commit comments

Comments
 (0)