This repository has been archived by the owner on Jul 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
Archive repos with dependences issues #4488
Labels
Comments
@piyush-garg @hrishin @sthaha @rupalibehera @kishansagathiya any chances you go over this list and see if there is anyone used, |
chmouel
changed the title
Archive repo with dependence issues
Archive repos with dependences issues
Oct 24, 2018
I have archived all those repos, |
I am thinking to just have an empty commit there so nobody can actually depends on it, |
This is emptied and rearchived, here is the script used : set -x
set -e
LISTFILE=/tmp/list-of-repo-to-blank-archive.txt
base=/tmp/security
for i in $(cat ${LISTFILE});do
b=$(basename $i)
if [[ -e ${base}/${b} ]];then
continue
fi
git clone ${i} ${base}/${b}
cd ${base}/${b}
git checkout -b archived-and-blanked
find . -maxdepth 1 -not -name '.git' -not -name '.' -print0|gxargs -r0 rm -rf
cat <<EOF>README.md
<aside class="notice">
This repository has been archived and resetted, you can still look at the git history for the old reference.
</aside>
EOF
git add .
git commit -a -m "Add information about archived repository"
git push origin -u archived-and-blanked
hub pull-request -o -m "Archive repository and all its files"
done |
Unarchived shootout-docker-maven since used, |
This was referenced Nov 6, 2018
archived as well : |
See ya later fabric8-console, it was nice knowin' ya. |
@chmouel |
@fkorotkov its moved to kubernetes-client repository it self. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We have been receiving a "GitHub security alert digest" on old repositories that
has security issues, afaik those are not used anymore.
Here is the list :
http://github.com/fabric8io/fabric8/network/alerts
http://github.com/fabric8io/data-mapper/network/alerts
http://github.com/fabric8io/insight/network/alerts
http://github.com/fabric8io/fabric8-ipaas/network/alerts
http://github.com/fabric8io/fabric8-devops/network/alerts
http://github.com/fabric8io/docker-client/network/alerts
http://github.com/fabric8io/kubeflix/network/alerts
http://github.com/fabric8io/django/network/alerts
http://github.com/fabric8io/mockwebserver/network/alerts
http://github.com/fabric8io/fabric8-profiles/network/alerts
http://github.com/fabric8io/fabric8-acceptance-tests/network/alerts
http://github.com/fabric8io/fabric8-jenkins-workflow-steps/network/alerts
Some of them are listed as critical, so unless there is a good reason to keep
those repos we should remove or fix them,
The text was updated successfully, but these errors were encountered: