mirror of
https://github.com/ryujinx-mirror/unstable-commands.git
synced 2024-11-22 22:30:14 +00:00
Fork of TSRBerry/unstable-commands for PR checks workflow
a916a5bb49
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.3.3 to 5.4.2. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/Microsoft/TypeScript/compare/v5.3.3...v5.4.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
---|---|---|
.github | ||
src | ||
tests | ||
.eslintignore | ||
.eslintrc.json | ||
.gitattributes | ||
.gitignore | ||
.markdownlint.json | ||
.nvmrc | ||
.prettierignore | ||
.prettierrc.json | ||
action.yml | ||
jest.config.js | ||
LICENSE | ||
package.json | ||
pnpm-lock.yaml | ||
README.md | ||
tsconfig.json |
Unstable commands
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"