diff --git a/metecho/api/jobs.py b/metecho/api/jobs.py index c8a6d9e43..c464a9a72 100644 --- a/metecho/api/jobs.py +++ b/metecho/api/jobs.py @@ -281,7 +281,7 @@ def create_repository( git config user.name '{user.get_full_name() or user.username}'; git config user.email '{user.email}'; git add --all; - git commit -m 'Bootstrap project (via Metecho)'; + git commit -m 'Bootstrap project (via Metecho) [ci skip]'; git push https://{user_gh.session.auth.token}@github.com/{repo.full_name}.git {branch_name}; """, # noqa: B950 shell=True, @@ -762,7 +762,6 @@ def delete_scratch_org(scratch_org, *, originating_user_id): def refresh_github_repositories_for_user(user: User): - try: repos = get_all_org_repos(user) with transaction.atomic():