The script creates issues in all repositories of GitHub executives with an ask to close GitHub for Russia and its developers.
Last active
March 10, 2022 19:27
-
-
Save ilyazub/4d81bcb76c581969c127f895a1a98404 to your computer and use it in GitHub Desktop.
GitHub please stop the Russian war in Ukraine
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
#!/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