generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: make roadmap issues mini dashboards
- Loading branch information
Showing
3 changed files
with
141 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
#!/bin/bash | ||
|
||
label="$1" | ||
issue_number="$2" | ||
if [ -z "$label" ] || [ -z "$issue_number" ]; then | ||
echo "Error: Both label and issue number must be provided." | ||
echo "Usage: $0 <label> <issue_number>" | ||
exit 1 | ||
fi | ||
|
||
map_to_markdown() { | ||
echo 'map("- #\(.number) \(.labels | map(select(.name != "run-all")) | map("https://github.com/TBD54566975/ftl/labels/\(.name | gsub(" ";"%20"))") | join(" "))")[]' | ||
} | ||
|
||
list_issues() { | ||
gh issue list "$@" --label "$label" --json number,labels | jq -r "$(map_to_markdown)" | sort -n | ||
} | ||
|
||
search_issues() { | ||
gh search issues --label "$label" --state open --repo TBD54566975/ftl --json number,labels "$@" | jq -r "$(map_to_markdown)" | sort -n | ||
} | ||
|
||
list_prioritized_issues() { | ||
gh issue list "$@" --label "$label" --json number,labels | jq '.[]' | jq -s ' | ||
map( | ||
. as $issue | | ||
($issue.labels | map(select(.name == "P0")) | length > 0) as $p0 | | ||
($issue.labels | map(select(.name == "P1")) | length > 0) as $p1 | | ||
($issue.labels | map(select(.name == "P2")) | length > 0) as $p2 | | ||
($issue.labels | map(select(.name == "P3")) | length > 0) as $p3 | | ||
$issue + {priority: (if $p0 then 0 elif $p1 then 1 elif $p2 then 2 elif $p3 then 3 else 4 end)} | ||
) | | ||
sort_by(.priority) | | ||
map(del(.priority)) | ||
' | jq -r "$(map_to_markdown)" | ||
} | ||
|
||
update_issue_template() { | ||
update_issue <<EOF | ||
<!-- This file is generated by scripts/update-workflow-issue. Do not edit manually. --> | ||
$( | ||
issues="$(list_issues --label P0)" | ||
test -z "$issues" && exit 0 | ||
echo "### https://github.com/TBD54566975/ftl/labels/P0" | ||
echo | ||
echo "> [!WARNING]" | ||
echo "> These issues are P0 and need immediate attention." | ||
echo "$issues" | ||
) | ||
$( | ||
echo "### All Issues" | ||
echo | ||
issues="$(search_issues -- -label:next -label:roadmap)" | ||
if [ -n "$issues" ]; then | ||
echo "$issues" | ||
else | ||
echo "> [!NOTE]" | ||
echo "> There are no issues." | ||
fi | ||
) | ||
### https://github.com/TBD54566975/ftl/labels/next | ||
$( | ||
issues="$(list_prioritized_issues --label next)" | ||
if test -z "$issues"; then | ||
echo "> [!WARNING]" | ||
echo "> There are no issues labelled for upcoming work." | ||
exit 0 | ||
fi | ||
echo "$issues" | ||
) | ||
$( | ||
issues="$(list_issues --label epic)" | ||
test -z "$issues" && exit 0 | ||
echo "### https://github.com/TBD54566975/ftl/labels/epic" | ||
echo "$issues" | ||
) | ||
EOF | ||
} | ||
|
||
update_issue() { | ||
if test -z "$NOOP"; then | ||
gh issue edit -F - "$issue_number" | ||
else | ||
cat | ||
fi | ||
} | ||
|
||
update_issue_template "$issue_number" "$label" |