jpsim / retest

Re-run failed GitHub Workflow runs on PRs by commenting "/retest".

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Retest GitHub Action

If you run GitHub Actions Workflows on your PRs, install this action to re-run failed workflow runs for the latest commit by commenting /retest on your PR.

To use this bot add the following workflow to your repo at .github/workflows/retest.yml:

name: Retest
on:
  issue_comment:
    types: [created]

jobs:
  build:
    name: Retest
    runs-on: ubuntu-latest
    steps:
      - uses: jpsim/retest@v1

Development

Clone this repo. Then run tests:

npm test

And lint:

npm run lint

License

MIT.

About

Re-run failed GitHub Workflow runs on PRs by commenting "/retest".

License:MIT License


Languages

Language:TypeScript 91.8%Language:JavaScript 8.2%