summaryrefslogtreecommitdiffstats
path: root/.github/workflows/changelog.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/changelog.yml')
-rw-r--r--.github/workflows/changelog.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml
new file mode 100644
index 0000000..3d43051
--- /dev/null
+++ b/.github/workflows/changelog.yml
@@ -0,0 +1,18 @@
+name: "Changelog checks"
+
+on:
+ pull_request_target:
+ types:
+ - opened
+ - edited
+ - synchronize
+
+jobs:
+ conventional-commits-lint-check:
+ name: "Lint PR title"
+ runs-on: "ubuntu-latest"
+ steps:
+ - name:
+ uses: amannn/action-semantic-pull-request@c3cd5d1ea3580753008872425915e343e351ab54
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}