Commit 3dfc942 1 parent 769dc00 commit 3dfc942 Copy full SHA for 3dfc942
File tree 5 files changed +96
-8
lines changed
5 files changed +96
-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" : " feat" ,
7
+ "section" : " ✨ Features" ,
8
+ "hidden" : false
9
+ },
10
+ {
11
+ "type" : " fix" ,
12
+ "section" : " 🐛 Bug Fixes" ,
13
+ "hidden" : false
14
+ },
15
+ {
16
+ "type" : " hfix" ,
17
+ "section" : " 🤫 Bug Fixes" ,
18
+ "hidden" : true
19
+ },
20
+ {
21
+ "type" : " perf" ,
22
+ "section" : " 🚀 Performance Improvements" ,
23
+ "hidden" : false
24
+ },
25
+ {
26
+ "type" : " revert" ,
27
+ "section" : " 🗑 Reverts" ,
28
+ "hidden" : false
29
+ },
30
+ {
31
+ "type" : " hrevert" ,
32
+ "section" : " 🤫 Reverts" ,
33
+ "hidden" : true
34
+ },
35
+ {
36
+ "type" : " docs" ,
37
+ "section" : " 📚 Documentation" ,
38
+ "hidden" : true
39
+ },
40
+ {
41
+ "type" : " style" ,
42
+ "section" : " 💎 Styles" ,
43
+ "hidden" : true
44
+ },
45
+ {
46
+ "type" : " chore" ,
47
+ "section" : " ♻️ Miscellaneous Chores" ,
48
+ "hidden" : true
49
+ },
50
+ {
51
+ "type" : " refactor" ,
52
+ "section" : " 📦 Code Refactoring" ,
53
+ "hidden" : true
54
+ },
55
+ {
56
+ "type" : " test" ,
57
+ "section" : " 🚨 Tests" ,
58
+ "hidden" : true
59
+ },
60
+ {
61
+ "type" : " build" ,
62
+ "section" : " 🛠 Build System" ,
63
+ "hidden" : true
64
+ },
65
+ {
66
+ "type" : " ci" ,
67
+ "section" : " ⚙️ Continuous Integration" ,
68
+ "hidden" : true
69
+ }
70
+ ],
71
+ "packages" : {
72
+ "." : {}
73
+ }
74
+ }
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