From 9fc561659f17382a1174666afea235dc9fecd516 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Thu, 24 Mar 2022 16:16:24 -0400 Subject: [PATCH] Update default branch to main Committed via https://github.com/asottile/all-repos --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1b031d8..9241679 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,7 +1,7 @@ name: main on: push: - branches: [master] + branches: [main] schedule: - cron: '30 8 * * *' @@ -18,6 +18,6 @@ jobs: - run: pre-commit-mirror . --language=python --package-name=mypy --types-or=python --types-or=pyi --args=--ignore-missing-imports,--scripts-are-modules --require-serial - run: | git remote set-url origin https://x-access-token:$GH_TOKEN@github.com/$GITHUB_REPOSITORY - git push origin HEAD:refs/heads/master --tags + git push origin HEAD:refs/heads/main --tags env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}