├── .eslintrc.js ├── .github ├── dependabot.yml └── workflows │ ├── add-to-project.yaml │ ├── ci.yaml │ ├── emergency-review-bypass.yaml │ ├── notify-approval-bypass.yaml │ └── pr-title.yaml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── LICENSE ├── Makefile ├── README.md ├── action.yml ├── dist ├── main.js └── main.js.map ├── package.json ├── src ├── buf.ts ├── error.ts ├── main.ts └── run.ts ├── static └── img │ └── lint.png └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/add-to-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/.github/workflows/add-to-project.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/emergency-review-bypass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/.github/workflows/emergency-review-bypass.yaml -------------------------------------------------------------------------------- /.github/workflows/notify-approval-bypass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/.github/workflows/notify-approval-bypass.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-title.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/.github/workflows/pr-title.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.11.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/dist/main.js -------------------------------------------------------------------------------- /dist/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/dist/main.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/package.json -------------------------------------------------------------------------------- /src/buf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/src/buf.ts -------------------------------------------------------------------------------- /src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/src/error.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/src/run.ts -------------------------------------------------------------------------------- /static/img/lint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/static/img/lint.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-lint-action/HEAD/tsconfig.json --------------------------------------------------------------------------------