summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2021-06-09 09:37:56 +0200
committerRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2021-06-09 09:37:56 +0200
commit507395d3500c5124d51a5ca80706a623abb74b37 (patch)
tree9b50d8541fe8daf021d05e87476b05657ec5ab05
parent2fdbffa3b13608a48a288b8e98e9ed66f85379ba (diff)
downloadsetuptools-scm-6.1.0.dev.tar.gz
drop pre-commit action as we use pre-commit.civ6.1.0.dev
-rw-r--r--.github/workflows/pre-commit.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml
deleted file mode 100644
index 39698b7..0000000
--- a/.github/workflows/pre-commit.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-name: pre-commit
-
-on:
- pull_request:
- push:
- branches: [main]
-
-jobs:
- pre-commit:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- - uses: actions/setup-python@v2
- - name: set PY
- run: echo "PY=$(python --version --version | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
- - uses: actions/cache@v1
- with:
- path: ~/.cache/pre-commit
- key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
- - uses: pre-commit/action@v1.0.0