https://github.com/jpsim/retest
Re-run failed GitHub Workflow runs on PRs by commenting "/retest".
https://github.com/jpsim/retest
Last synced: 5 months ago
JSON representation
Re-run failed GitHub Workflow runs on PRs by commenting "/retest".
- Host: GitHub
- URL: https://github.com/jpsim/retest
- Owner: jpsim
- License: mit
- Created: 2022-08-22T14:13:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-22T14:20:01.000Z (almost 4 years ago)
- Last Synced: 2025-04-09T23:13:51.520Z (over 1 year ago)
- Language: TypeScript
- Size: 177 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.