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 09838ef commit e627965Copy full SHA for e627965
.github/workflows/fixupmerge.yml
.github/workflows/gitlint.yml
@@ -0,0 +1,16 @@
1
+on: [pull_request]
2
+
3
+name: Git Checks
4
5
+jobs:
6
+ commit-lint:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ with:
11
+ fetch-depth: 0
12
+ - uses: actions/setup-python@v4
13
14
+ python-version: '3.x'
15
+ - run: pip install gitlint
16
+ - run: gitlint --commits $(git merge-base origin/master HEAD)..HEAD
0 commit comments