{"id":34776952,"url":"https://github.com/fverse/typed-ci","last_synced_at":"2026-03-16T01:36:37.501Z","repository":{"id":320748936,"uuid":"1082750622","full_name":"fverse/typed-ci","owner":"fverse","description":"Type-safe, validated CI/CD configuration for GitLab CI and GitHub Actions","archived":false,"fork":false,"pushed_at":"2026-03-05T17:32:56.000Z","size":45,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-05T19:36:21.230Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Pkl","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/fverse.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-24T17:58:21.000Z","updated_at":"2026-03-05T17:33:01.000Z","dependencies_parsed_at":"2025-10-25T17:34:57.186Z","dependency_job_id":null,"html_url":"https://github.com/fverse/typed-ci","commit_stats":null,"previous_names":["fverse/typed-ci"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fverse/typed-ci","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fverse%2Ftyped-ci","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fverse%2Ftyped-ci/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fverse%2Ftyped-ci/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fverse%2Ftyped-ci/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fverse","download_url":"https://codeload.github.com/fverse/typed-ci/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fverse%2Ftyped-ci/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30558157,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-15T23:30:23.986Z","status":"ssl_error","status_checked_at":"2026-03-15T23:28:43.564Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2025-12-25T08:35:25.453Z","updated_at":"2026-03-16T01:36:37.493Z","avatar_url":"https://github.com/fverse.png","language":"Pkl","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Typed CI\n\nType-safe, validated CI/CD pipeline configuration for GitLab CI and GitHub Actions using [Pkl](https://pkl-lang.org).\n\n## Overview\n\n`typed-ci` provides Pkl templates that allow you to write your CI/CD configurations in Pkl and then compile them (using the Pkl CLI) to YAML. Pkl will type-check, validate the configuration before it successfully compiles. This way you can configuration errors at evaluation time, not at runtime.\n\n## Templates\n\n### [typed-gitlab-ci](./packages/typed-gitlab-ci)\n\nWrite your GitLab CI pipelines in Pkl with full type safety and validation. Compile to YAML and catch errors before they break your pipeline.\n\n```pkl\namends \"package://pkl-lang.org/typed-gitlab-ci@1.0.0/GitLabCI.pkl\"\n\nstages { \"build\", \"test\", \"deploy\" }\n\njobs {\n  [\"build-job\"] {\n    stage = \"build\"\n    script { \"make build\" }\n  }\n}\n```\n\n**[View Documentation →](./packages/typed-gitlab-ci/README.md)**\n\n### [typed-github-actions](./packages/typed-github-actions)\n\nWrite your GitHub Actions workflows in Pkl with full type safety and validation. Compile to YAML and catch errors before they break your workflow.\n\n```pkl\namends \"package://pkl-lang.org/typed-github-actions@1.0.0/GitHubActions.pkl\"\n\nname = \"CI\"\non { push { branches { \"main\" } } }\n\njobs {\n  [\"build\"] {\n    `runs-on` = \"ubuntu-latest\"\n    steps {\n      new { uses = \"actions/checkout@v4\" }\n      new { run = \"make build\" }\n    }\n  }\n}\n```\n\n**[View Documentation →](./packages/typed-github-actions/README.md)**\n\n## Getting Started\n\n### Prerequisites\n\n- [Pkl CLI](https://pkl-lang.org/main/current/pkl-cli/index.html) installed\n\n### Installation\n\nChoose the package for your platform and add it to your `PklProject`:\n\n```pkl\namends \"pkl:Project\"\n\ndependencies {\n  [\"typed-gitlab-ci\"] {\n    uri = \"package://pkl-lang.org/typed-gitlab-ci@1.0.0\"\n  }\n  // or\n  [\"typed-github-actions\"] {\n    uri = \"package://pkl-lang.org/typed-github-actions@1.0.0\"\n  }\n}\n```\n\nThen resolve dependencies:\n\n```bash\npkl project resolve\n```\n\nFor more information, check out the template-specific READMEs.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffverse%2Ftyped-ci","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffverse%2Ftyped-ci","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffverse%2Ftyped-ci/lists"}