Commit 8e40404 1 parent 769dc00 commit 8e40404 Copy full SHA for 8e40404
File tree 5 files changed +88
-8
lines changed
5 files changed +88
-8
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "." : " 1.4.0"
3
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "versioning" : " always-bump-patch" ,
3
+ "release-type" : " python" ,
4
+ "packages" : {
5
+ "." : {}
6
+ }
7
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "versioning" : " always-bump-minor" ,
3
+ "release-type" : " python" ,
4
+ "changelog-sections" : [
5
+ {
6
+ "type" : " fix" ,
7
+ "section" : " 🐛 Bug Fixes"
8
+ },
9
+ {
10
+ "type" : " hfix" ,
11
+ "section" : " 🤫 Bug Fixes" ,
12
+ "hidden" : false
13
+ },
14
+ {
15
+ "type" : " perf" ,
16
+ "section" : " 🚀 Performance Improvements"
17
+ },
18
+ {
19
+ "type" : " revert" ,
20
+ "section" : " 🗑 Reverts"
21
+ },
22
+ {
23
+ "type" : " hrevert" ,
24
+ "section" : " 🤫 Reverts" ,
25
+ "hidden" : false
26
+ },
27
+ {
28
+ "type" : " docs" ,
29
+ "section" : " 📚 Documentation" ,
30
+ "hidden" : true
31
+ },
32
+ {
33
+ "type" : " style" ,
34
+ "section" : " 💎 Styles" ,
35
+ "hidden" : true
36
+ },
37
+ {
38
+ "type" : " chore" ,
39
+ "section" : " ♻️ Miscellaneous Chores" ,
40
+ "hidden" : true
41
+ },
42
+ {
43
+ "type" : " refactor" ,
44
+ "section" : " 📦 Code Refactoring" ,
45
+ "hidden" : true
46
+ },
47
+ {
48
+ "type" : " test" ,
49
+ "section" : " 🚨 Tests" ,
50
+ "hidden" : true
51
+ },
52
+ {
53
+ "type" : " build" ,
54
+ "section" : " 🛠 Build System" ,
55
+ "hidden" : true
56
+ },
57
+ {
58
+ "type" : " ci" ,
59
+ "section" : " ⚙️ Continuous Integration" ,
60
+ "hidden" : true
61
+ }
62
+ ],
63
+ "packages" : {
64
+ "." : {}
65
+ }
66
+ }
Original file line number Diff line number Diff line change 1
- name : Release Backport
1
+ name : Release Hotfix
2
2
on :
3
3
push :
4
4
branches :
11
11
pull-requests : write
12
12
steps :
13
13
- name : Release
14
- uses : googleapis/release-please-action@v3
14
+ uses : googleapis/release-please-action@v4
15
15
with :
16
16
release-type : python
17
- versioning-strategy : always-bump-patch
18
- default-branch : ${{ github.ref_name }}
17
+ target-branch : ${{ github.ref_name }}
19
18
token : ${{ secrets.GH_RELEASE_PAT }}
19
+ config-file : .github/release-please-config.hotfix.json
20
+ manifest-file : .github/.release-please-manifest.json
Original file line number Diff line number Diff line change 1
1
name : Release Main
2
2
on :
3
+ pull_request :
4
+ branches : [ "main" ]
3
5
push :
4
6
branches :
5
7
- main
11
13
pull-requests : write
12
14
steps :
13
15
- name : Release
14
- uses : googleapis/release-please-action@v3
16
+ uses : googleapis/release-please-action@v4
15
17
with :
16
- release-type : python
17
- versioning-strategy : always-bump-minor
18
- default-branch : ${{ github.ref_name }}
18
+ # target-branch: ${{ github.ref_name }}
19
+ target-branch : fix/release-please-sections
19
20
token : ${{ secrets.GH_RELEASE_PAT }}
21
+ config-file : .github/release-please-config.main.json
22
+ manifest-file : .github/.release-please-manifest.json
You can’t perform that action at this time.
0 commit comments