Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions metecho/api/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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():
Expand Down