From 40b8509c265c3fb8be1c147ca108a6ca615bc937 Mon Sep 17 00:00:00 2001 From: Narcis Date: Tue, 3 Mar 2026 18:28:21 +0100 Subject: [PATCH 1/2] fix comment Signed-off-by: Narcis --- dotnotation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnotation.go b/dotnotation.go index 7a39d3d..25e3553 100644 --- a/dotnotation.go +++ b/dotnotation.go @@ -47,7 +47,7 @@ func CompileExtractor(expr string) (*Extractor, error) { return &Extractor{e: e}, err } -// CompileExtractor compiles the dotnotation expression and returns an Applier +// CompileApplier compiles the dotnotation expression and returns an Applier func CompileApplier(expr string, op func(interface{}) interface{}) (*Applier, error) { e, err := compile(expr, op) return &Applier{e: e}, err From 6ee8ebd791241f0b53dcc57ec03df17d4c9462c7 Mon Sep 17 00:00:00 2001 From: Narcis Date: Tue, 3 Mar 2026 18:30:43 +0100 Subject: [PATCH 2/2] trigger gh action on main branch instead of master Signed-off-by: Narcis --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 006c43d..a393432 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -2,9 +2,9 @@ name: Go on: push: - branches: [ master ] + branches: [ main ] pull_request: - branches: [ master ] + branches: [ main ] jobs: