-
Notifications
You must be signed in to change notification settings - Fork 554
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: Corrections to retest-action doc
Fixing a broken link and some readability improvements. Signed-off-by: karthik-us <ksubrahm@redhat.com>
- Loading branch information
1 parent
b2e31db
commit fa631e9
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# retest-action | ||
|
||
This is a github action built using the golang and the [github | ||
api](github.com/google/go-github). The main idea behind this one is to retest | ||
api](https://github.com/google/go-github). The main idea behind this one is to retest | ||
the failed tests on the approved PR's to avoid burden on the | ||
maintainer's/author's to retest all the failed tests. | ||
|
||
* List the pull requests from the github organization. | ||
* Check PR is open and have required approvals. | ||
* Check PR as the required label to continue to retest. | ||
* Check PR has the required label to continue to retest. | ||
* Pulls the failed test details. | ||
* Check failed test has reached the maximum limit. | ||
* If the limit has not reached the action will post the `retest` command on the | ||
* If the limit has not reached, the action will post the `retest` command on the | ||
PR with log location for further debugging. | ||
* If the limit has reached the Pull Request will be skipped. | ||
* If the limit has reached, the Pull Request will be skipped. |