Skip to content

Commit

Permalink
Merge pull request #146 from dmvict/master
Browse files Browse the repository at this point in the history
READY: Sync action description with branch `js_action`
  • Loading branch information
dmvict authored Mar 29, 2024
2 parents f062299 + e3e19bc commit 4f3e668
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,16 @@ It is a cause of failed jobs. For this case, the action `wretry.action` can retr

## Features

- Retries Github `JavaScript` actions. The action can be an action repository that is not published on `Marketplace`.
- Retries Github `Docker` actions that use `Dockerfile` as an image.
- Retries Github `JavaScript` actions.
- Retries `GitHub Docker` actions utilizing a `Dockerfile` as the image source.
- Retries private actions. The option `github_token` is used for private repositories.
- The action can be an action repository that is not published on `Marketplace`.
- Retries shell commands. Uses default shells to run commands.
- Can retry single action or single command ( multiline command ), but not both simultaneously.
- Retries `main`, `pre` and `post` stages of external actions.
- Always has `pre` and `post` stages. If external action has `pre` or/and `post` stage, then action run it also.
- Handles no conditions in external actions ( fields `pre-if` and `post-if` ). All stages of external action will be performed.
- Action handles conditions in `JavaScript` actions ( fields `pre-if` and `post-if` ). Some conditions can be unsolvable and then action skips the stage.
- Executes only the main script of Docker actions, excluding pre-entrypoint and post-entrypoint scripts.
- Resolves external action default inputs from next contexts : `github`, `env`, `job`, `matrix`, `inputs`.
- Retries actions with defined number of attempts ( default is 2 ).
- Retries actions with defined delay between attempts ( default is 0 ).
Expand Down

0 comments on commit 4f3e668

Please sign in to comment.