├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── actions │ └── integration-test-suite │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── check-dist.yml │ ├── ci.yml │ ├── clean-logs.yml │ ├── dependabot-auto-approve.yml │ ├── dependabot-auto-merge.yml │ ├── dependabot-pull-request.yml │ ├── housekeeping-no-response.yml │ └── housekeeping-stale.yml ├── .gitignore ├── .nvmrc ├── CHANGELOG.md ├── CODEOWNERS ├── LICENSE ├── README.md ├── action.yml ├── biome.json ├── dist ├── index.js └── licenses.txt ├── package.json ├── src ├── config │ ├── constants.ts │ └── types.ts ├── index.test.ts ├── index.ts └── lib │ ├── api.test.ts │ ├── api.ts │ ├── circuit-breaker.test.ts │ ├── circuit-breaker.ts │ ├── logger.ts │ ├── params.test.ts │ ├── params.ts │ └── retry.ts ├── tsconfig.json └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** -diff linguist-generated=true 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/integration-test-suite/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.github/actions/integration-test-suite/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.github/workflows/check-dist.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/clean-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.github/workflows/clean-logs.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-approve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.github/workflows/dependabot-auto-approve.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.github/workflows/dependabot-auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.github/workflows/dependabot-pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/housekeeping-no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.github/workflows/housekeeping-no-response.yml -------------------------------------------------------------------------------- /.github/workflows/housekeeping-stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.github/workflows/housekeeping-stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 24 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/action.yml -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/biome.json -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/package.json -------------------------------------------------------------------------------- /src/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/src/config/constants.ts -------------------------------------------------------------------------------- /src/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/src/config/types.ts -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/src/lib/api.test.ts -------------------------------------------------------------------------------- /src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/src/lib/api.ts -------------------------------------------------------------------------------- /src/lib/circuit-breaker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/src/lib/circuit-breaker.test.ts -------------------------------------------------------------------------------- /src/lib/circuit-breaker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/src/lib/circuit-breaker.ts -------------------------------------------------------------------------------- /src/lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/src/lib/logger.ts -------------------------------------------------------------------------------- /src/lib/params.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/src/lib/params.test.ts -------------------------------------------------------------------------------- /src/lib/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/src/lib/params.ts -------------------------------------------------------------------------------- /src/lib/retry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/src/lib/retry.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorjs/gh-actions-clean-workflow/HEAD/vitest.config.ts --------------------------------------------------------------------------------