├── .github ├── CODEOWNER ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ ├── DESIGN-DOC.yml │ ├── FEATURE-REQUEST.yml │ └── config.yml ├── auto_assign.yml ├── config.yml └── workflows │ ├── closed_references.yml │ ├── conventional_commits.yml │ ├── format.yml │ ├── labels.yml │ ├── licenses.yml │ ├── release_tagger.yml │ └── stale.yml ├── .gitignore ├── .reference-ignore ├── .reports └── dep-licenses.csv ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── action.yml ├── package.json └── scripts ├── executor-info.sh ├── install-buf.sh ├── install-go-grpc-plugin.sh ├── install-go-plugin.sh ├── install-grpc-java-plugin.sh ├── install-python_betterproto-plugin.sh └── install-ts-proto-plugin.sh /.github/CODEOWNER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/CODEOWNER -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/ISSUE_TEMPLATE/BUG-REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/DESIGN-DOC.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/ISSUE_TEMPLATE/DESIGN-DOC.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/workflows/closed_references.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/workflows/closed_references.yml -------------------------------------------------------------------------------- /.github/workflows/conventional_commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/workflows/conventional_commits.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.github/workflows/licenses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/workflows/licenses.yml -------------------------------------------------------------------------------- /.github/workflows/release_tagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/workflows/release_tagger.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .bin 3 | -------------------------------------------------------------------------------- /.reference-ignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | docs 3 | CHANGELOG.md 4 | -------------------------------------------------------------------------------- /.reports/dep-licenses.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/SECURITY.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/action.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/package.json -------------------------------------------------------------------------------- /scripts/executor-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/scripts/executor-info.sh -------------------------------------------------------------------------------- /scripts/install-buf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/scripts/install-buf.sh -------------------------------------------------------------------------------- /scripts/install-go-grpc-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/scripts/install-go-grpc-plugin.sh -------------------------------------------------------------------------------- /scripts/install-go-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/scripts/install-go-plugin.sh -------------------------------------------------------------------------------- /scripts/install-grpc-java-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/scripts/install-grpc-java-plugin.sh -------------------------------------------------------------------------------- /scripts/install-python_betterproto-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/scripts/install-python_betterproto-plugin.sh -------------------------------------------------------------------------------- /scripts/install-ts-proto-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/build-buf-action/HEAD/scripts/install-ts-proto-plugin.sh --------------------------------------------------------------------------------