Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jpsim/retest

Re-run failed GitHub Workflow runs on PRs by commenting "/retest".
https://github.com/jpsim/retest

Last synced: 10 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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`:

```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:

```bash
npm test
```

And lint:

```
npm run lint
```

# License

MIT.