{"id":20571363,"url":"https://github.com/fluent-ci-templates/buf-pipeline","last_synced_at":"2026-05-06T08:31:40.529Z","repository":{"id":191990344,"uuid":"683602732","full_name":"fluent-ci-templates/buf-pipeline","owner":"fluent-ci-templates","description":"A ready-to-use CI/CD Pipeline for linting and pushing Protobuf files to the Buf Registry.","archived":false,"fork":false,"pushed_at":"2024-06-18T20:33:29.000Z","size":160,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-10T13:07:55.302Z","etag":null,"topics":["cicd","dagger","deno","fluentci","pipeline","protobuf","typescript","wasm"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fluent-ci-templates.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-27T05:29:26.000Z","updated_at":"2024-06-18T20:33:32.000Z","dependencies_parsed_at":"2023-12-02T11:32:52.710Z","dependency_job_id":"cd8e376a-dd00-4b22-9327-00e2f171cde7","html_url":"https://github.com/fluent-ci-templates/buf-pipeline","commit_stats":null,"previous_names":["fluent-ci-templates/buf-pipeline"],"tags_count":12,"template":true,"template_full_name":null,"purl":"pkg:github/fluent-ci-templates/buf-pipeline","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Fbuf-pipeline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Fbuf-pipeline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Fbuf-pipeline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Fbuf-pipeline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fluent-ci-templates","download_url":"https://codeload.github.com/fluent-ci-templates/buf-pipeline/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Fbuf-pipeline/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32684599,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T02:33:58.958Z","status":"ssl_error","status_checked_at":"2026-05-06T02:33:39.611Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cicd","dagger","deno","fluentci","pipeline","protobuf","typescript","wasm"],"created_at":"2024-11-16T05:16:04.346Z","updated_at":"2026-05-06T08:31:40.508Z","avatar_url":"https://github.com/fluent-ci-templates.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Buf Pipeline\n\n[![fluentci pipeline](https://shield.fluentci.io/x/buf_pipeline)](https://pkg.fluentci.io/buf_pipeline)\n![deno compatibility](https://shield.deno.dev/deno/^1.42)\n[![dagger-min-version](https://shield.fluentci.io/dagger/v0.11.7)](https://dagger.io)\n[![](https://jsr.io/badges/@fluentci/buf)](https://jsr.io/@fluentci/buf)\n[![](https://img.shields.io/codecov/c/gh/fluent-ci-templates/buf-pipeline)](https://codecov.io/gh/fluent-ci-templates/buf-pipeline)\n[![ci](https://github.com/fluent-ci-templates/buf-pipeline/actions/workflows/ci.yml/badge.svg)](https://github.com/fluent-ci-templates/buf-pipeline/actions/workflows/ci.yml)\n\nA ready-to-use CI/CD Pipeline for linting and pushing Protobuf files to the [Buf](https://buf.build/) Registry.\n\n## 🚀 Usage\n\nRun the following command in your project:\n\n```bash\nfluentci run buf_pipeline\n```\n\nOr, if you want to use it as a template:\n\n```bash\nfluentci init -t buf\n```\n\nThis will create a `.fluentci` folder in your project.\n\nNow you can run the pipeline with:\n\n```bash\nfluentci run .\n```\n\n## 🧩 Dagger Module\n\nUse as a [Dagger](https://dagger.io) Module:\n\n```bash\ndagger install github.com/fluent-ci-templates/buf-pipeline@main\n```\n\nCall a function from this module:\n\n```bash\ndagger call format --src .\ndagger call lint --src .\ndagger call push --src . --token env:BUF_TOKEN\n```\n\n## 🛠️ Environment variables\n\n| Variable  | Description              |\n| --------- | ------------------------ |\n| BUF_TOKEN | The Buf Registry token. |\n\n## ✨ Jobs\n\n| Job    | Description                                   |\n| ------ | --------------------------------------------- |\n| lint   | Lint your Protobuf files with buf.            |\n| format | Format your Protobuf files with buf.          |\n| push   | Push your Protobuf files to the Buf Registry. |\n\n```typescript\n  push(\n    src: Directory | string,\n    token: Secret | string\n  ): Promise\u003cstring\u003e\n\n  format(\n    src: Directory | string\n  ): Promise\u003cDirectory | string\u003e\n\n  lint(src: Directory | string): Promise\u003cstring\u003e\n```\n\n## 👨‍💻 Programmatic usage\n\nYou can also use this pipeline programmatically:\n\n```ts\nimport { lint, push } from \"jsr:@fluentci/buf\";\n\nawait lint(\".\");\nawait push(\".\", Deno.env.get(\"BUF_TOKEN\")!);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluent-ci-templates%2Fbuf-pipeline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffluent-ci-templates%2Fbuf-pipeline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluent-ci-templates%2Fbuf-pipeline/lists"}