{"id":18952469,"url":"https://github.com/simonwhitaker/runny","last_synced_at":"2026-02-21T09:06:08.920Z","repository":{"id":249231084,"uuid":"830828996","full_name":"simonwhitaker/runny","owner":"simonwhitaker","description":"🍯 Runny: a tool for running things","archived":false,"fork":false,"pushed_at":"2025-12-14T08:20:25.000Z","size":1873,"stargazers_count":17,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-16T11:58:39.338Z","etag":null,"topics":["cli","command-line","command-line-tool","go","golang","makefile"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simonwhitaker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-07-19T05:02:46.000Z","updated_at":"2025-12-14T08:20:21.000Z","dependencies_parsed_at":"2024-07-19T14:07:57.688Z","dependency_job_id":"49268e21-24b6-4ddb-9e6e-7035c8ce7544","html_url":"https://github.com/simonwhitaker/runny","commit_stats":null,"previous_names":["simonwhitaker/runny"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/simonwhitaker/runny","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonwhitaker%2Frunny","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonwhitaker%2Frunny/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonwhitaker%2Frunny/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonwhitaker%2Frunny/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simonwhitaker","download_url":"https://codeload.github.com/simonwhitaker/runny/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonwhitaker%2Frunny/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29677881,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T06:23:40.028Z","status":"ssl_error","status_checked_at":"2026-02-21T06:23:39.222Z","response_time":107,"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":["cli","command-line","command-line-tool","go","golang","makefile"],"created_at":"2024-11-08T13:33:33.513Z","updated_at":"2026-02-21T09:06:08.891Z","avatar_url":"https://github.com/simonwhitaker.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🍯 Runny: for running things\n\nMakefiles are for boomers. The future is Runny.\n\n## Features\n\n* ❤️ Simple YAML syntax (inspired by Github Actions)\n* 🪄 Full schema validaton == autocomplete in your favourite code editor\n* 🧱 Build workflows through composition with `needs` and `then`\n* 🏃‍♂️ Run steps conditionally with `if`\n\n## Installation\n\n```command\nbrew install simonwhitaker/tap/runny\n```\n\n## Usage\n\nCreate a `.runny.yaml` file:\n\n```yaml\nshell: /bin/bash\ncommands:\n  install-uv:\n    if: \"! command -v uv\"\n    run: pip install uv\n  pip-sync:\n    needs:\n      - install-uv\n    run: uv pip sync requirements.txt\n  pip-compile-and-sync:\n    needs:\n      - install-uv\n    run: |\n      uv pip compile requirements.in -o requirements.txt\n      uv pip sync requirements.txt\n  pip-install:\n    argnames:\n      - packagespec\n    run: echo $packagespec \u003e\u003e requirements.in\n    then:\n      - pip-compile-and-sync\n```\n\nThen run commands with runny:\n\n```command\nrunny pip-install ruff\n```\n\n## Examples\n\n### Go\n\n```yaml\ncommands:\n  clean:\n    run: |\n      go clean ./...\n      rm -rf dist\n  install-goreleaser:\n    if: \"! command -v goreleaser\"\n    run: brew install goreleaser/tap/goreleaser\n  release:\n    needs:\n      - clean\n      - install-goreleaser\n    run: |\n      export GITHUB_TOKEN=$(gh auth token)\n      goreleaser\n  generate:\n    run: go generate ./...\n  test:\n    run: go test ./...\n  test-coverage:\n    run: go test -coverprofile=c.out ./... \u0026\u0026 go tool cover -func=\"c.out\"\n  test-coverage-html:\n    run: go test -coverprofile=c.out ./... \u0026\u0026 go tool cover -html=\"c.out\"\n```\n\n### Python\n\n```yaml\ncommands:\n  update-requirements:\n    run: pip freeze \u003e requirements.txt\n  pip-install:\n    argnames:\n      - packagespec\n    run: pip install $packagespec\n    then:\n      - update-requirements\n```\n\n### Docker Compose\n\nDocker Compose has good command-line completion already. But using runny, you can add entries for just the commands you use regularly, then get an uncluttered list of options when you tab-complete.\n\n```yaml\ncommands:\n  up:\n    run: docker compose up -d\n  down:\n    run: docker compose down\n  build-and-up:\n    run: docker compose up --build -d\n  logs:\n    argnames:\n      - service\n    run: docker compose logs $service\n  shell:\n    argnames:\n      - service\n    run: docker compose exec $service sh\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimonwhitaker%2Frunny","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimonwhitaker%2Frunny","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimonwhitaker%2Frunny/lists"}