├── .commitlintrc ├── .editorconfig ├── .eslintrc ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── card-labeler.yml ├── config.yml ├── labeler.yml ├── no-response.yml ├── pr-labeler.yml ├── pull_request_template.md ├── release-drafter.yml ├── stale.yml ├── workflow-details.json ├── workflow-settings.json └── workflows │ ├── add-release-tag.yml │ ├── add-test-tag.yml │ ├── check-warnings.yml │ ├── ci.yml │ ├── issue-opened.yml │ ├── pr-opened.yml │ ├── pr-updated.yml │ ├── project-card-moved.yml │ ├── sync-workflows.yml │ ├── toc.yml │ └── update-dependencies.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .lintstagedrc ├── .releasegarc ├── LICENSE ├── README.ja.md ├── README.md ├── _config.yml ├── action.yml ├── package.json ├── rollup.config.mjs ├── src ├── constant.ts ├── fixtures │ ├── build1.json │ ├── build2.json │ ├── repos.listReleases.json │ ├── repos.updateRelease.json │ ├── test2 │ │ └── package.json │ ├── test3 │ │ └── package.json │ ├── test4 │ │ └── package.json │ ├── test5 │ │ └── package.json │ ├── test6 │ │ └── package.json │ ├── test7 │ │ └── package.json │ └── test8 │ │ └── package.json ├── index.test.ts ├── index.ts ├── main.ts ├── setup.ts ├── types.ts └── utils │ ├── command.ts │ ├── command1.test.ts │ ├── command2.test.ts │ ├── misc.test.ts │ └── misc.ts ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.commitlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.commitlintrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @technote-space 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://paypal.me/technote0space -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/card-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/card-labeler.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/pr-labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflow-details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/workflow-details.json -------------------------------------------------------------------------------- /.github/workflow-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/workflow-settings.json -------------------------------------------------------------------------------- /.github/workflows/add-release-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/workflows/add-release-tag.yml -------------------------------------------------------------------------------- /.github/workflows/add-test-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/workflows/add-test-tag.yml -------------------------------------------------------------------------------- /.github/workflows/check-warnings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/workflows/check-warnings.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/issue-opened.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/workflows/issue-opened.yml -------------------------------------------------------------------------------- /.github/workflows/pr-opened.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/workflows/pr-opened.yml -------------------------------------------------------------------------------- /.github/workflows/pr-updated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/workflows/pr-updated.yml -------------------------------------------------------------------------------- /.github/workflows/project-card-moved.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/workflows/project-card-moved.yml -------------------------------------------------------------------------------- /.github/workflows/sync-workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/workflows/sync-workflows.yml -------------------------------------------------------------------------------- /.github/workflows/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/workflows/toc.yml -------------------------------------------------------------------------------- /.github/workflows/update-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.github/workflows/update-dependencies.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged 5 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- 1 | { 2 | "*.{js,jsx,ts,tsx}": "yarn lint:fix" 3 | } -------------------------------------------------------------------------------- /.releasegarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/.releasegarc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/_config.yml -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/action.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/constant.ts -------------------------------------------------------------------------------- /src/fixtures/build1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/fixtures/build1.json -------------------------------------------------------------------------------- /src/fixtures/build2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/fixtures/build2.json -------------------------------------------------------------------------------- /src/fixtures/repos.listReleases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/fixtures/repos.listReleases.json -------------------------------------------------------------------------------- /src/fixtures/repos.updateRelease.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/fixtures/repos.updateRelease.json -------------------------------------------------------------------------------- /src/fixtures/test2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/fixtures/test2/package.json -------------------------------------------------------------------------------- /src/fixtures/test3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/fixtures/test3/package.json -------------------------------------------------------------------------------- /src/fixtures/test4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/fixtures/test4/package.json -------------------------------------------------------------------------------- /src/fixtures/test5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/fixtures/test5/package.json -------------------------------------------------------------------------------- /src/fixtures/test6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/fixtures/test6/package.json -------------------------------------------------------------------------------- /src/fixtures/test7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/fixtures/test7/package.json -------------------------------------------------------------------------------- /src/fixtures/test8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/fixtures/test8/package.json -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/setup.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/utils/command.ts -------------------------------------------------------------------------------- /src/utils/command1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/utils/command1.test.ts -------------------------------------------------------------------------------- /src/utils/command2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/utils/command2.test.ts -------------------------------------------------------------------------------- /src/utils/misc.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/utils/misc.test.ts -------------------------------------------------------------------------------- /src/utils/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/src/utils/misc.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/release-github-actions/HEAD/yarn.lock --------------------------------------------------------------------------------