├── .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 ├── babel.config.js ├── package.json ├── rollup.config.mjs ├── src ├── constant.ts ├── fixtures │ ├── pulls.list1.json │ ├── pulls.list2.json │ └── pulls.list3.json ├── main.ts ├── process.test.ts ├── process.ts ├── setup.ts ├── types.ts └── utils │ ├── command.test.ts │ ├── command.ts │ └── misc.ts ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.commitlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.commitlintrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @technote-space 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/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/get-diff-action/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/card-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/card-labeler.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/pr-labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflow-details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/workflow-details.json -------------------------------------------------------------------------------- /.github/workflow-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/workflow-settings.json -------------------------------------------------------------------------------- /.github/workflows/add-release-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/workflows/add-release-tag.yml -------------------------------------------------------------------------------- /.github/workflows/add-test-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/workflows/add-test-tag.yml -------------------------------------------------------------------------------- /.github/workflows/check-warnings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/workflows/check-warnings.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/issue-opened.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/workflows/issue-opened.yml -------------------------------------------------------------------------------- /.github/workflows/pr-opened.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/workflows/pr-opened.yml -------------------------------------------------------------------------------- /.github/workflows/pr-updated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/workflows/pr-updated.yml -------------------------------------------------------------------------------- /.github/workflows/project-card-moved.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/workflows/project-card-moved.yml -------------------------------------------------------------------------------- /.github/workflows/sync-workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/workflows/sync-workflows.yml -------------------------------------------------------------------------------- /.github/workflows/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/workflows/toc.yml -------------------------------------------------------------------------------- /.github/workflows/update-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.github/workflows/update-dependencies.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/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/get-diff-action/HEAD/.releasegarc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/_config.yml -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/action.yml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/src/constant.ts -------------------------------------------------------------------------------- /src/fixtures/pulls.list1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/src/fixtures/pulls.list1.json -------------------------------------------------------------------------------- /src/fixtures/pulls.list2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/src/fixtures/pulls.list2.json -------------------------------------------------------------------------------- /src/fixtures/pulls.list3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/src/fixtures/pulls.list3.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/process.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/src/process.test.ts -------------------------------------------------------------------------------- /src/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/src/process.ts -------------------------------------------------------------------------------- /src/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/src/setup.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/command.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/src/utils/command.test.ts -------------------------------------------------------------------------------- /src/utils/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/src/utils/command.ts -------------------------------------------------------------------------------- /src/utils/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/src/utils/misc.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technote-space/get-diff-action/HEAD/yarn.lock --------------------------------------------------------------------------------