File tree 2 files changed +32
-1
lines changed
2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ name : PR checks
3
+
4
+ on :
5
+ pull_request :
6
+ types :
7
+ - opened
8
+ - edited
9
+ - synchronize
10
+ - reopened
11
+ - unlocked
12
+
13
+ permissions :
14
+ contents : read
15
+
16
+ jobs :
17
+ check-conventional-commit :
18
+ name : Check commit messages
19
+ runs-on : ubuntu-latest
20
+ steps :
21
+ - uses : actions/checkout@v4
22
+ with :
23
+ ref : " ${{ github.event.pull_request.head.ref }}"
24
+ repository : " ${{ github.event.pull_request.head.repo.full_name }}"
25
+ fetch-depth : 0
26
+ - uses : actions/setup-python@v5
27
+ with :
28
+ cache : " pip" # caching pip dependencies
29
+ - run : pip install commitizen
30
+ - name : Check commit messages
31
+ run : cz check --rev-range origin/${GITHUB_BASE_REF}..
Original file line number Diff line number Diff line change 104
104
<plugin >
105
105
<groupId >org.apache.maven.plugins</groupId >
106
106
<artifactId >maven-jar-plugin</artifactId >
107
- <version >3.3.0 </version >
107
+ <version >3.4.1 </version >
108
108
</plugin >
109
109
</plugins >
110
110
</pluginManagement >
You can’t perform that action at this time.
0 commit comments