{"id":21658202,"url":"https://github.com/tsirysndr/fluent-github-actions","last_synced_at":"2026-04-11T13:05:08.774Z","repository":{"id":188001389,"uuid":"677938941","full_name":"tsirysndr/fluent-github-actions","owner":"tsirysndr","description":"Generate Github Actions Workflow Yaml from a simple declarative syntax in typescript 🛠️ 💻 ✨","archived":false,"fork":false,"pushed_at":"2024-02-29T21:42:18.000Z","size":57,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-26T20:03:29.323Z","etag":null,"topics":["deno","github-actions","typescript","workflow"],"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/tsirysndr.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-13T06:27:14.000Z","updated_at":"2024-07-11T02:25:50.000Z","dependencies_parsed_at":"2024-11-25T09:39:59.694Z","dependency_job_id":null,"html_url":"https://github.com/tsirysndr/fluent-github-actions","commit_stats":null,"previous_names":["tsirysndr/fluent-github-actions"],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsirysndr%2Ffluent-github-actions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsirysndr%2Ffluent-github-actions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsirysndr%2Ffluent-github-actions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsirysndr%2Ffluent-github-actions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tsirysndr","download_url":"https://codeload.github.com/tsirysndr/fluent-github-actions/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244555612,"owners_count":20471467,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["deno","github-actions","typescript","workflow"],"created_at":"2024-11-25T09:28:52.177Z","updated_at":"2025-12-30T22:53:04.108Z","avatar_url":"https://github.com/tsirysndr.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Fluent Github Actions\n\n[![deno module](https://shield.deno.dev/x/fluent_github_actions)](https://deno.land/x/fluent_github_actions)\n![deno compatibility](https://shield.deno.dev/deno/^1.34)\n[![](https://img.shields.io/codecov/c/gh/tsirysndr/fluent-github-actions)](https://codecov.io/gh/tsirysndr/fluent-github-actions)\n\nFluent Github Actions is a deno module for generating Github Actions Workflow configuration files easily and fluently.\n\n## 🚀 Usage\n\n```typescript\nimport {\n  Workflow,\n  JobSpec,\n} from \"https://deno.land/x/fluent_github_actions@v0.2.0/mod.ts\";\n\nconst workflow = new Workflow(\"Codecov\");\n\nconst push = {\n  branches: [\"master\"],\n};\n\nconst test: JobSpec = {\n  \"runs-on\": \"ubuntu-latest\",\n  steps: [\n    {\n      uses: \"actions/checkout@v2\",\n    },\n    {\n      uses: \"denolib/setup-deno@v2\",\n      with: {\n        \"deno-version\": \"v1.34\",\n      },\n    },\n    {\n      name: \"Create coverage files\",\n      run: \"deno test --coverage=coverage\",\n    },\n    {\n      name: \"Create coverage report\",\n      run: \"deno coverage ./coverage --lcov \u003e coverage.lcov\",\n    },\n    {\n      name: \"Collect coverage\",\n      uses: \"codecov/codecov-action@v3\",\n      env: {\n        CODECOV_TOKEN: \"${{ secrets.CODECOV_TOKEN }}\",\n      },\n      with: {\n        file: \"./coverage.lcov\",\n      },\n    },\n  ],\n};\n\nworkflow.on({ push }).jobs({ test });\n\nconsole.log(workflow.toString());\n\nworkflow.save(\"./.github/workflows/codecov.yml\");\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsirysndr%2Ffluent-github-actions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftsirysndr%2Ffluent-github-actions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsirysndr%2Ffluent-github-actions/lists"}