Skip to content

Commit

Permalink
Add command to re-run GitHub Actions tests (#2167)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Velichkevich <andrey.velichkevich@gmail.com>
  • Loading branch information
andreyvelich committed Jul 15, 2024
1 parent ee736a7 commit 54b5804
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/trigger-rerun-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Re-Run PR Tests

on:
issue_comment:
types: [created]

jobs:
rerun_pr_tests:
name: rerun_pr_tests
if: ${{ github.event.issue.pull_request }}
runs-on: ubuntu-20.04
steps:
- uses: estroz/rerun-actions@main
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
comment_id: ${{ github.event.comment.id }}

0 comments on commit 54b5804

Please sign in to comment.