├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── label.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── __tests__ └── checkKeywords.test.ts ├── action.yml ├── jest.config.js ├── lib └── index.js ├── package.json ├── src ├── checkKeywords.ts ├── getIssueContent.ts ├── github.ts ├── index.ts ├── setIssueAssignee.ts └── setIssueLabel.ts ├── tsconfig.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/checkKeywords.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/__tests__/checkKeywords.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/action.yml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/package.json -------------------------------------------------------------------------------- /src/checkKeywords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/src/checkKeywords.ts -------------------------------------------------------------------------------- /src/getIssueContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/src/getIssueContent.ts -------------------------------------------------------------------------------- /src/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/src/github.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/setIssueAssignee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/src/setIssueAssignee.ts -------------------------------------------------------------------------------- /src/setIssueLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/src/setIssueLabel.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naturalclar/issue-action/HEAD/yarn.lock --------------------------------------------------------------------------------