File tree Expand file tree Collapse file tree 3 files changed +37
-2
lines changed Expand file tree Collapse file tree 3 files changed +37
-2
lines changed Original file line number Diff line number Diff line change
1
+ # https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
2
+ changelog :
3
+ categories :
4
+ - title : Breaking Changes
5
+ labels :
6
+ - breaking-change
7
+ - title : line-openapi updates
8
+ labels :
9
+ - line-openapi-update
10
+ - title : New Features
11
+ labels :
12
+ - new-features
13
+ - title : Bug fix
14
+ labels :
15
+ - bug-fix
16
+ - title : Dependency updates
17
+ labels :
18
+ - dependency upgrade
19
+ exclude :
20
+ labels :
21
+ - line-openapi-update
22
+ - title : Other Changes
23
+ labels :
24
+ - " *"
Original file line number Diff line number Diff line change 47
47
git config user.email github-actions@github.com
48
48
git checkout -b update-diff-${{ env.CURRENT_DATETIME }}
49
49
50
+ git add line-openapi
50
51
git add lib/**
51
- git commit --allow-empty - m "Codes are generated by openapi"
52
+ git commit -m "Codes are generated by openapi"
52
53
53
54
git push origin update-diff-${{ env.CURRENT_DATETIME }}
54
55
gh pr create -B ${{ github.ref_name }} -t "Codes are generated by openapi" -b "" --label "line-openapi-update"
Original file line number Diff line number Diff line change 4
4
" config:base"
5
5
],
6
6
"automerge" : true ,
7
- "platformAutomerge" : true
7
+ "platformAutomerge" : true ,
8
+ "git-submodules" : {
9
+ "enabled" : true
10
+ },
11
+ "labels" : [ " dependency upgrade" ],
12
+ "packageRules" : [
13
+ {
14
+ "matchPackagePatterns" : [" ^line-openapi$" ],
15
+ "labels" : [" dependency upgrade" , " line-openapi-update" ]
16
+ }
17
+ ]
8
18
}
You can’t perform that action at this time.
0 commit comments