Skip to content

Commit 2e37e65

Browse files
Merge pull request #2135 from timflannagan/enable-estroz-tide-action
.github/workflows: Enable GH action that retests failed workflows
2 parents 02d278b + 43d476a commit 2e37e65

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/retest.yml

Lines changed: 14 additions & 0 deletions
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)