{"id":28676391,"url":"https://github.com/yukitsune/plz","last_synced_at":"2025-06-28T11:33:05.198Z","repository":{"id":246755645,"uuid":"791360380","full_name":"YuKitsune/plz","owner":"YuKitsune","description":"A flexible task runner with a POSIX-style interface, designed as an alternative to Make.","archived":false,"fork":false,"pushed_at":"2025-06-17T23:18:14.000Z","size":2716,"stargazers_count":3,"open_issues_count":5,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-18T00:25:52.231Z","etag":null,"topics":["build-tool","devops","makefile","rust","task-runner"],"latest_commit_sha":null,"homepage":"https://www.plz.sh","language":"Rust","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/YuKitsune.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}},"created_at":"2024-04-24T15:21:44.000Z","updated_at":"2025-06-17T23:16:48.000Z","dependencies_parsed_at":"2024-07-23T03:27:06.446Z","dependency_job_id":"5a8398a4-6d66-4bbe-9dd3-89845b2a7605","html_url":"https://github.com/YuKitsune/plz","commit_stats":null,"previous_names":["yukitsune/dingus"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/YuKitsune/plz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YuKitsune%2Fplz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YuKitsune%2Fplz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YuKitsune%2Fplz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YuKitsune%2Fplz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YuKitsune","download_url":"https://codeload.github.com/YuKitsune/plz/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YuKitsune%2Fplz/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262421957,"owners_count":23308552,"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":["build-tool","devops","makefile","rust","task-runner"],"created_at":"2025-06-13T23:03:10.409Z","updated_at":"2025-06-28T11:33:05.162Z","avatar_url":"https://github.com/YuKitsune.png","language":"Rust","readme":"\u003ch1 align=\"center\"\u003e\n  Plz\n\u003c/h1\u003e\n\n\u003ch3 align=\"center\"\u003e\n  A dead-simple task runner written in pure Rust.\n  \u003cbr\u003e\n  \u003cbr\u003e\n\n  [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/yukitsune/plz/ci.yml?branch=main)](https://github.com/YuKitsune/plz/actions/workflows/ci.yml)\n  [![License](https://img.shields.io/github/license/YuKitsune/plz)](https://github.com/YuKitsune/plz/blob/main/LICENSE)\n  [![Latest Release](https://img.shields.io/github/v/release/YuKitsune/plz?include_prereleases)](https://github.com/YuKitsune/plz/releases)\n\u003c/h3\u003e\n\nPlz (pronounced \"Please\") is a dead-simple task runner with a familiar POSIX-style interface.\nIt's lightweight, easy to use, and perfect for consolidating project-specific tasks.\n\n## Features\n\n- Designed from the ground-up as a command runner without the constraints of a build tool.\n- Supports Windows, macOS, and Linux, and isn't dependant on a specific Shell.\n- Provides a POSIX-style command-line interface allowing for nested subcommands, and variable substitution using command-line arguments.\n- Uses a simple YAML file for configuration.\n\n## Overview\n\n\u003e **Warning**\n\u003e plz is still in early development and it's configuration syntax and usage are subject to change.\n\nPlz relies on YAML for its configuration.\n\nIn your `plz.yaml`, you can define variables at the root level.\nThese variables are global, so they're available to all commands and subcommands throughout the file.\n\nExample:\n```yaml\nvariables:\n  name: Godzilla\n\ncommands:\n  greet:\n    action: echo Hello, $name!\n\n  pet:\n    action: echo You have petted $name!\n```\n\n```sh\n$ plz greet\nHello, Godzilla!\n\n$ plz pet\nYou have petted Godzilla!\n```\n\nYou can also define variables within commands.\nThese variables are available to the command and its subcommands.\n\n```yaml\ncommands:\n  greet:\n    variables:\n      name: Godzilla\n    action: echo Hello, $name!\n\n  pet:\n    variables:\n      name: Maxwell\n    action: echo You have petted $name!\n```\n\n```sh\n$ plz greet\nHello, Godzilla!\n\n$ plz pet\nYou have petted Maxwell!\n```\n\nActions represent the actual commands that get executed.\nWhen you invoke a command, its actions are run in sequence.\n\n```yaml\ncommands:\n  greet:\n    variables:\n      name: Godzilla\n\n    # Single action\n    action: echo Hello, $name!\n\n  pet:\n    variables:\n      name: Maxwell\n\n    # Multiple actions\n    actions:\n      - echo Petting $name...\n      - sleep 5\n      - echo You have petted $name!\n```\n\n```sh\n$ plz greet\nHello, Godzilla!\n\n$ plz pet\nPetting...\nYou have petted Maxwell!\n```\n\n## Learn more\n\nInterested in learning more? Check out the [docs](https://plz.sh/docs/introduction)!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyukitsune%2Fplz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyukitsune%2Fplz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyukitsune%2Fplz/lists"}