We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f2135f commit bbb23feCopy full SHA for bbb23fe
.github/workflows/enforce-label.yml
@@ -1,4 +1,4 @@
1
-name: Enforce PR label and pre-commit
+name: Enforce PR label
2
3
concurrency:
4
group: label-${{ github.ref }}
@@ -15,7 +15,3 @@ jobs:
15
steps:
16
- name: enforce-triage-label
17
uses: jupyterlab/maintainer-tools/.github/actions/enforce-label@v1
18
-
19
- - name: pre-commit
20
- uses: pre-commit-ci/lite-action@v1.1.0
21
- if: always()
.github/workflows/pre-commit.yml
@@ -0,0 +1,16 @@
+on:
+ pull_request:
+ push:
+ branches: [main]
5
+
6
+jobs:
7
+ main:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ - uses: actions/setup-python@v4
12
+ with:
13
+ python-version: 3.x
14
+ - uses: pre-commit/action@v3.0.1
+ - uses: pre-commit-ci/lite-action@v1.1.0
+ if: always()
0 commit comments