Script to remove GitHub registry images Hey, though I quickly just share a script to get rid of packages you don’t want anymore from your GitHub registry. #!/bin/bash set -e # VariablesOWNER=$1 # Replace with your GitHub username or organization namePACKAGE_GLOB=$2 # Glob pattern for package names passed as an argument (e.g., "package*" to match all)# makes sure that important packages are not removed by accidentcontains(){ found=1 array=(place-very-important-packages-here-to-make-sure-they...