Skip to content

Commit 43d476a

Browse files
committed
.github/workflows: Enable GH action that retests failed workflows
Signed-off-by: timflannagan <[email protected]>
1 parent 908aa61 commit 43d476a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Diff for: .github/workflows/retest.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
on:
2+
issue_comment:
3+
types: [created]
4+
5+
jobs:
6+
rerun_pr_tests:
7+
name: rerun_pr_tests
8+
if: ${{ github.event.issue.pull_request }}
9+
runs-on: ubuntu-20.04
10+
steps:
11+
- uses: estroz/rerun-actions@main
12+
with:
13+
repo_token: ${{ secrets.GITHUB_TOKEN }}
14+
comment_id: ${{ github.event.comment.id }}

0 commit comments

Comments
 (0)