Skip to content

Commit

Permalink
Add rerun workflow (#2181)
Browse files Browse the repository at this point in the history
to rerun other workflows via pr comments
see https://github.com/marketplace/actions/rerun-actions
  • Loading branch information
jneira authored Sep 10, 2021
1 parent 1f0249e commit 94ebd4d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/rerun.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
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 94ebd4d

Please # to comment.