├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ ├── check-linked-issue-labels.test.ts └── checks.test.ts ├── action.yml ├── dist ├── commit.hbs ├── footer.hbs ├── header.hbs ├── index.js ├── index.js.map ├── licenses.txt ├── sourcemap-register.js └── template.hbs ├── jest.config.js ├── package.json ├── src ├── @types │ ├── conventional-changelog-conventionalcommits.ts │ ├── conventional-commit-types.ts │ └── conventional-commits-parser.ts ├── check-issue-labels.ts ├── check-linked-issue-labels.ts ├── checks.ts └── main.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | jest.config.js 5 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** -diff linguist-generated=true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/check-linked-issue-labels.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/__tests__/check-linked-issue-labels.test.ts -------------------------------------------------------------------------------- /__tests__/checks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/__tests__/checks.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/commit.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/dist/commit.hbs -------------------------------------------------------------------------------- /dist/footer.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/dist/header.hbs -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /dist/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/dist/template.hbs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/package.json -------------------------------------------------------------------------------- /src/@types/conventional-changelog-conventionalcommits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/src/@types/conventional-changelog-conventionalcommits.ts -------------------------------------------------------------------------------- /src/@types/conventional-commit-types.ts: -------------------------------------------------------------------------------- 1 | declare module 'conventional-commit-types' 2 | -------------------------------------------------------------------------------- /src/@types/conventional-commits-parser.ts: -------------------------------------------------------------------------------- 1 | declare module 'conventional-commits-parser' 2 | -------------------------------------------------------------------------------- /src/check-issue-labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/src/check-issue-labels.ts -------------------------------------------------------------------------------- /src/check-linked-issue-labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/src/check-linked-issue-labels.ts -------------------------------------------------------------------------------- /src/checks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/src/checks.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtfoley/pr-compliance-action/HEAD/tsconfig.json --------------------------------------------------------------------------------