File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : up
3+ on :
4+ push :
5+ branches :
6+ - master
7+ tags :
8+ - ' *'
9+ concurrency :
10+ group : up-${{ github.ref }}
11+ cancel-in-progress : true
12+ jobs :
13+ up :
14+ runs-on : ubuntu-22.04
15+ steps :
16+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
17+ - run : |-
18+ git fetch --tags --force && \
19+ latest=$(git tag --sort=creatordate | tail -1) && \
20+ sed -E -i "s/<version>[^<]+/<version>${latest}/g" README.md
21+ - uses : peter-evans/create-pull-request@v6
22+ with :
23+ branch : version-up
24+ commit-message : ' new version in README'
25+ delete-branch : true
26+ title : ' New version in README'
27+ assignees : yegor256
28+ base : master
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ Just add this plugin to your `pom.xml`:
3232 <plugin >
3333 <groupId >com.qulice</groupId >
3434 <artifactId >qulice-maven-plugin</artifactId >
35+ <version >0.22.2</version >
3536 <configuration >
3637 <license >file:${basedir}/LICENSE.txt</license >
3738 </configuration >
You can’t perform that action at this time.
0 commit comments