Ability to re-run a commit if it fails
See original GitHub issueSometimes, when a pre_commit hook is configured, our commit will fail. It would be helpful to have a way to pass something like --retry
so we won’t need to enter the message again.
Issue Analytics
- State:
- Created 8 years ago
- Comments:18 (18 by maintainers)
Top Results From Across the Web
Add ability to re-run single jobs · Issue #432 · actions/runner
GitHub Actions will let you re-run all failed jobs, any individual job, and let you see the results of previous runs. This was...
Read more >Github PR - when the build check fails, unable to rerun it ...
We have determined that this issue is not a bug. Please rerun the build from Builds tab -> find the failed build ->...
Read more >How to undo a commit after a failed push? - git - Stack Overflow
You could've solved it by reverting the last commit using the command git reset HEAD~. which would undo your last commit and get...
Read more >Ability to rerun a successful pipeline via "Retry" button - GitLab
Not only failed pipelines sometimes need a rerun but also successful ones: If your tests are unreliable and you are sceptical that the...
Read more >Save time with partial re-runs in GitHub Actions
It is now possible to re-run only failed jobs or a single job in GitHub Actions workflows. Save time with partial re-runs in...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
One thing to note. If using from a npm script defined on package.json. The syntax required double
--
, as npm requires--
for passing args tonpm run
and the--retry
being the argument itself:npm run commit -- --retry
commit only being an alias to git-cz on node-modules/bin
Cool @kentcdodds . Thanks for the tip 😄