Skip to content

Commit 95f07dd

Browse files
committed
feat: with token
1 parent db2d053 commit 95f07dd

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/release-helpers.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,7 @@ jobs:
5858

5959
- name: specify helpers
6060
run: |
61-
git cliff -vv
62-
echo "now latest"
63-
git cliff -vv --latest --include-path "helpers/*"
61+
git cliff -vv --latest --include-path "helpers/*" --token ${{ github.token }}
6462
6563
- name: generate release notes without specifying helpers
6664
run: |

helpers/misc.go

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ func TransformAndMergeMap[T any](m1, m2 map[string]T, transform func(string) str
7272
return r
7373
}
7474

75+
7576
// MergeMapRecursive recursively (nestedly) merges map m2 with m1 overwriting common values with m2's values.
7677
func MergeMapRecursive(m1, m2 map[string]interface{}) (r map[string]interface{}) {
7778
r = map[string]interface{}{}

0 commit comments

Comments
 (0)