We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11d8e9e commit e7290dcCopy full SHA for e7290dc
.github/mergify.yml
@@ -2,6 +2,7 @@ pull_request_rules:
2
- name: automatic merge for Dependabot pull requests
3
conditions:
4
- author=dependabot[bot]
5
+ - check-success=commitlint
6
- check-success=lint
7
- 'title~=^build\(deps-dev\): bump '
8
actions:
.github/workflows/commitlint.yml
@@ -0,0 +1,14 @@
1
+name: commitlint
+on: [push, pull_request]
+
+permissions:
+ contents: read
+jobs:
+ commitlint:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Commitlint
12
+ uses: remarkablemark/commitlint@v1
13
+ with:
14
+ checkout: true
.github/workflows/lint.yml
@@ -1,6 +1,9 @@
name: lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
0 commit comments