Skip to content

Instantly share code, notes, and snippets.

@ilyazub
Last active March 10, 2022 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilyazub/4d81bcb76c581969c127f895a1a98404 to your computer and use it in GitHub Desktop.
Save ilyazub/4d81bcb76c581969c127f895a1a98404 to your computer and use it in GitHub Desktop.
GitHub please stop the Russian war in Ukraine
#!/bin/bash
title="Please stop war in Ukraine"
body=$(
cat <<EOF
While Ukraine is under missile attacks GitHub could be used by Russians to develop apps and platforms aiming to destabilize Ukrainian web resources.
Please, prevent these actions and don't stay on the same side with invaders! All information about war can be found at: https://war.ukraine.ua/
We ask you to close GitHub for Russia and its developers! We value your support and we are in need for your actions!
EOF
)
for owner in broccolini eanderson keithballinger kdaigle matthewmccullough ashtom; do
for repo in $(gh repo list $owner --json name --jq '.[].name' | sort -R); do
gh issue create -R github.com/$owner/"$repo" --title "$title" --body "$body"
sleep 1
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment