-
Notifications
You must be signed in to change notification settings - Fork 481
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: Recipe grouping #1776
Comments
This is a feature I'd like to have myself and I've started a PR working on it #1842 |
Hey @neunenak $ tree .
.
├── justfile
└── justfiles
├── docker.justfile
├── gh.justfile
├── git.justfile So, as per the format above, I'll have to add attributes in each of the recipe inside I think this can be a separate issue since this issue is about having attribute set on an individual recipe. Thanks for working on it. |
I think it'll be easy to add make |
Will these recipe groups have additional functionality beyond cosmetically improving list output? For example, if #626 is implemented, will recipe groups be used to define which recipes could be run in parallel and which recipes have to stay sequential? |
It's cosmetic (helping a lot with the usability when you have long list) but not only. |
#1842 is merged now. I think the suggestion in #1776 (comment) of having there be a way to tag imports with a group would be useful and I want to try to get that in as a follow-up PR, so I think it's worth keeping this issue open. |
Consider allowing recipes to be aded to groups. For example, using the existing recipe attributes format:
and listed by group when calling
just --list
, ex.List groups via
just --groups
, ex.There might be desire to allow recipes to be part of multiple groups, so this could be considered in the implementation but should not be an initial requirement.
This might also be a way to solve: #1652. All recipes from a group could be executed at once rather than needing to match on recipe name.
The text was updated successfully, but these errors were encountered: