-
Notifications
You must be signed in to change notification settings - Fork 12
refactor(taskfiles): Reorganize non-main taskfiles into a single directory. #200
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -177,12 +177,8 @@ tasks: | |
| --strict \ | ||
| .gersemirc \ | ||
| .github/ \ | ||
| build-tasks.yaml \ | ||
| dep-tasks.yaml \ | ||
| docs/tasks.yaml \ | ||
| lint-tasks.yaml \ | ||
| taskfile.yaml \ | ||
| test-tasks.yaml | ||
| taskfiles/ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainDirectory-wide yamllint target looks good; verify there are no lingering “-task.yml” files and that top-level includes align.* Switching to lint the whole Run this script from the repo root to verify: 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "YAML files under taskfiles/:"
fd -t f -e yaml -e yml '.*' taskfiles | sort
echo
echo "Checking for legacy *-task*.ya?ml files anywhere:"
fd -t f -E .git -E node_modules '(?i).*-tasks?\.ya?ml$' || echo "No legacy *-task*.ya?ml files found."
echo
echo "References to legacy filenames in Taskfiles and docs:"
rg -nP -C2 '(?i)-tasks?\.ya?ml' -g '!**/.git/**' -g '!**/node_modules/**' || echo "No references found."
echo
echo "Root Taskfile references to taskfiles/ entries:"
if [ -f taskfile.yaml ]; then
rg -nP -C2 '(?i)taskfiles/' taskfile.yaml || echo "No explicit references to taskfiles/ found in taskfile.yaml (may be fine if using directory includes elsewhere)."
else
echo "taskfile.yaml not found at repo root."
fiLength of output: 1945 Fix legacy Verified no lingering • docs/src/user-docs/guides-quick-start.md, line 80: 🤖 Prompt for AI Agents |
||
|
|
||
| toml-check: | ||
| cmds: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.