From 384cf8741c7d493dd84b6be939d1b068962adf6f Mon Sep 17 00:00:00 2001 From: Neel Shah Date: Mon, 14 Feb 2022 17:12:40 +0100 Subject: [PATCH] meta: Remove black GH action --- .github/workflows/black.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/black.yml diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml deleted file mode 100644 index b89bab82fe..0000000000 --- a/.github/workflows/black.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: black - -on: push - -jobs: - format: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: "3.x" - - - name: Install Black - run: pip install -r linter-requirements.txt - - - name: Run Black - run: black tests examples sentry_sdk - - - name: Commit changes - run: | - if git diff-files --quiet; then - echo "No changes" - exit 0 - fi - - git config --global user.name 'sentry-bot' - git config --global user.email 'markus+ghbot@sentry.io' - - git commit -am "fix: Formatting" - git push