summaryrefslogtreecommitdiffstats
path: root/.github/workflows/commit-lint.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/commit-lint.yml')
-rw-r--r--.github/workflows/commit-lint.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml
new file mode 100644
index 0000000..309d637
--- /dev/null
+++ b/.github/workflows/commit-lint.yml
@@ -0,0 +1,18 @@
+on:
+ pull_request:
+
+name: Pull Request Checks
+
+jobs:
+ commit-lint:
+ runs-on: ubuntu-latest
+ if: github.event_name == 'pull_request'
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-python@v4
+ with:
+ python-version: '3.x'
+ - run: pip install gitlint
+ - run: gitlint --commits $(git merge-base origin/master HEAD)..HEAD