Skip to content

Commit 42a9acb

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

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/release-helpers.yaml

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

5959
- name: specify helpers
6060
run: |
61-
git cliff -vv --latest --include-path "helpers/*" --token ${{ github.token }}
61+
git cliff -vv --latest --include-path "helpers/*" --github-token ${{ github.token }}
6262
6363
- name: generate release notes without specifying helpers
6464
run: |

helpers/misc.go

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

7575

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

0 commit comments

Comments
 (0)