Fork of TSRBerry/unstable-commands for PR checks workflow

TSR Berry 19a9a05077 Release package version v1.0.3 пре 11 месеци
.github 4ef3fca2f9 Bump actions/upload-artifact from 3 to 4 (#75) пре 11 месеци
dist 19a9a05077 Release package version v1.0.3 пре 11 месеци
src 355d827df4 Move runUnstableCommand out of main.ts пре 1 година
tests 355d827df4 Move runUnstableCommand out of main.ts пре 1 година
.eslintignore ec2c32d2b7 Initial commit пре 1 година
.eslintrc.json ec2c32d2b7 Initial commit пре 1 година
.gitattributes ec2c32d2b7 Initial commit пре 1 година
.gitignore 3660627cba Remove template files and directories and add .nvmrc пре 1 година
.markdownlint.json b4820d0501 Add markdownlint config пре 1 година
.nvmrc 48212e9afc Update action runtime to lts/iron (node 20) пре 11 месеци
.prettierignore ec2c32d2b7 Initial commit пре 1 година
.prettierrc.json ec2c32d2b7 Initial commit пре 1 година
LICENSE a0c343e845 Update README.md and LICENSE пре 1 година
README.md 820df0131e Adjust README.md formatting пре 1 година
action.yml 55fdba24fd Update action runtime to node20 пре 1 година
jest.config.js 54f3ddc424 Add simple tests пре 1 година
package.json 19a9a05077 Release package version v1.0.3 пре 11 месеци
pnpm-lock.yaml e13204455b Update lockfileVersion from 6.0 to 6.1 пре 11 месеци
tsconfig.json ec2c32d2b7 Initial commit пре 1 година

README.md

Unstable commands

unstable-commands status

A GitHub Action to retry commands if weird things happen.

Inputs

commands

Required: The commands to run. Use this like the run keyword for steps.

timeout-minutes

Required: Maximum number of minutes to wait for the commands to finish execution. Use this like the timeout-minutes keyword for steps.

retry-codes

Required: A comma-separated value containing the exit codes which should cause a retry.

shell

Optional: The shell to use to run the commands. Use this like the shell keyword for steps.

Default: "default-shell".

working-directory

Optional: The working directory where the commands are executed in. Use this like the working-directory keyword for steps.

Default: ${{ github.workspace }}.

max-retries

Optional: Maximum amount of times the specified commands should be tried before giving up.

Default: "3".

Example usage

uses: TSRBerry/unstable-commands@v1
with:
  commands: |
    echo "Hello!"
    sleep 2m
    echo "Bye!"
  timeout-minutes: "3"
  retry-codes: "1,2,139"