Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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".
- Host: GitHub
- URL: https://github.com/jpsim/retest
- Owner: jpsim
- License: mit
- Created: 2022-08-22T14:13:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-22T14:20:01.000Z (over 2 years ago)
- Last Synced: 2024-12-07T13:31:24.827Z (about 2 months 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.