├── .eslintrc.yml ├── .github └── workflows │ ├── eslint.yml │ └── test.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── fixtures ├── all.yml ├── branch.yml ├── commits.yml ├── no-brackets.yml ├── no-ignore-case.yml └── title.yml ├── index.js ├── index.test.js ├── package.json ├── utils └── config.js └── yarn.lock /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/workflows/eslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/.github/workflows/eslint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/action.yml -------------------------------------------------------------------------------- /fixtures/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/fixtures/all.yml -------------------------------------------------------------------------------- /fixtures/branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/fixtures/branch.yml -------------------------------------------------------------------------------- /fixtures/commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/fixtures/commits.yml -------------------------------------------------------------------------------- /fixtures/no-brackets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/fixtures/no-brackets.yml -------------------------------------------------------------------------------- /fixtures/no-ignore-case.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/fixtures/no-ignore-case.yml -------------------------------------------------------------------------------- /fixtures/title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/fixtures/title.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/index.js -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/index.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/package.json -------------------------------------------------------------------------------- /utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/utils/config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykramesh/pr-lint-action/HEAD/yarn.lock --------------------------------------------------------------------------------