We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad36bed commit 4c0e4eeCopy full SHA for 4c0e4ee
1 file changed
.github/workflows/lint-pr-title.yml
@@ -0,0 +1,27 @@
1
+name: "Lint PR"
2
+on:
3
+ pull_request:
4
+ types:
5
+ - opened
6
+ - edited
7
+
8
+jobs:
9
+ title:
10
+ name: Title
11
+ if: github.event.action == 'opened' || github.event.changes.title.from
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: geo-engine/conventional-pr-title@v1
15
+ with:
16
+ types: |-
17
+ build
18
+ ci
19
+ docs
20
+ feat
21
+ fix
22
+ perf
23
+ refactor
24
+ test
25
+ scopes: |-
26
+ library
27
+ examples
0 commit comments