A (not-so-)spammy way to spread awareness #2312
Replies: 4 comments 7 replies
-
Here's an example: Boeing/config-file-validator#57 |
Beta Was this translation helpful? Give feedback.
-
Thank you for your suggestion. But I'm afraid that it may be spammy. |
Beta Was this translation helpful? Give feedback.
-
Create repository listsThe list isn't perfect, but almost good. git ls-files | grep -E "^pkgs/[^.]+/registry\.yaml$" | sed -E "s|^pkgs/([^./]+/[^./]+)[^.]*/registry\.yaml$|\1|" | sort -u $ git ls-files | grep -E "^pkgs/[^.]+/registry\.yaml$" | sed -E "s|^pkgs/([^./]+/[^./]+)[^.]*/registry\.yaml$|\1|" | sort -u | wc -l
1183 Create issues
#!/usr/bin/env bash
set -euo pipefail
echo "[INFO] Creating issues" >&2
while read -r repo; do
if echo "$repo" | grep -f created_repos.txt > /dev/null; then
echo "[INFO] Skipped creating an issue because it was already created to this repository repo=$repo" >&2
continue
fi
echo "[INFO] Creating an issue repo=$repo" >&2
sed "s|<package>|$repo|" body.md |
gh -R "$repo" issue create \
-F - \
-t "Add the installation guide with aqua to the document"
echo "$repo" >> created_repos.txt
done < repos.txt
echo "[INFO] Completed creating issues" >&2 |
Beta Was this translation helpful? Give feedback.
-
Create GitHub Issues by scriptHi, thank you for your great project! aqua is a declarative CLI Version Manager written in Go. If you have any feedbacks on the issue creation, please comment! |
Beta Was this translation helpful? Give feedback.
-
Overview
Aqua is a great tool. It's much faster than
asdf
(even with the Rust replacement rtx), and safer, but it's not popular. As the repositories, which are supported, are in the standard registry, maybe an automated script to create an issue with the project, which suggests adding an installation with aqua (maybe even posting a small piece of suggested markdown to be included in the installation section.Why is the proposal needed?
Bring more awareness and support for the fantastic tool.
Beta Was this translation helpful? Give feedback.
All reactions