We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bb5486b + 624f2d1 commit 143c1dbCopy full SHA for 143c1db
.github/workflows/pr-lint.yml
@@ -0,0 +1,15 @@
1
+name: PR lint
2
+
3
+on:
4
+ pull_request:
5
+ types: ['opened', 'edited', 'reopened', 'synchronize']
6
7
+jobs:
8
+ pr-lint:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: seferov/pr-lint-action@master
12
+ with:
13
+ title-regex: '^((Pulling|Update from) refs\/heads\/|(\[tf (plan|apply|destroy|status)\]|\[non tf\])\s(feat|fix|build|chore|ci|docs|style|refactor|perf|test)(\!?): (.{3,250})[^\s*]$)'
14
+ github-token: ${{ secrets.GITHUB_TOKEN }}
15
+ auto-close-message: 'Closing this pull request since the title does not match %pattern% pattern. Please fix the title and re-open the pull request.'
0 commit comments