From 6c936cc0b8196825502dae1d2823f78bc8f788ac Mon Sep 17 00:00:00 2001 From: Nick Bebout Date: Thu, 23 Mar 2017 16:19:30 +0000 Subject: [PATCH] More changes to update manual/push-badges.yml for pagure --- playbooks/manual/push-badges.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/playbooks/manual/push-badges.yml b/playbooks/manual/push-badges.yml index a9b94400db..0a9fd95ffc 100644 --- a/playbooks/manual/push-badges.yml +++ b/playbooks/manual/push-badges.yml @@ -2,7 +2,7 @@ # # Badge artists and badge developers should be pushing stuff to this repo: # -# https://git.fedorahosted.org/cgit/badges.git +# https://pagure.io/fedora-badges-assets.git # # This playbook will take any new content from there and push it out onto our # servers. @@ -26,13 +26,13 @@ - name: clone the local bare repo git: dest={{tempdir}} repo=/git/badges remote=origin update=yes - - name: add fedorahosted as a second remote - command: git remote add fhosted {{upstream}} chdir={{tempdir}} + - name: add pagure as a second remote + command: git remote add pagure {{upstream}} chdir={{tempdir}} - - name: pull down changes from fedorahosted - command: git pull fhosted master chdir={{tempdir}} + - name: pull down changes from pagure + command: git pull pagure master chdir={{tempdir}} - - name: push fedorahosted changes back to the lockbox bare repo + - name: push pagure changes back to the lockbox bare repo command: git push origin master chdir={{tempdir}} - name: clean up that temporary {{tempdir}} dir