From 92353377004083ab2e03b0decd99d8e478d2fd74 Mon Sep 17 00:00:00 2001 From: Rebecca Turner Date: Tue, 22 Oct 2024 09:47:10 -0700 Subject: [PATCH] Fix examples for `add.branch_replacements` config setting (#90) Turns out you need the full path, `[section]` markers don't apply to nested tables like this. --- config.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.toml b/config.toml index 5cadee4..55568fe 100644 --- a/config.toml +++ b/config.toml @@ -87,7 +87,7 @@ commands = [ # `rebeccat/team-1234-some-ticket-title-which-is-way-too-long`. With # configuration like this: # -# [[branch_replacements]] +# [[add.branch_replacements]] # find = '''\w+/\w{1,4}-\d{1,5}-(\w+(?:-\w+){0,2}).*''' # replace = '''$1''' # @@ -96,7 +96,7 @@ commands = [ # # For completeness, you can also specify how many replacements are performed: # -# [[branch_replacements]] +# [[add.branch_replacements]] # find = '''puppy''' # replace = '''doggy''' # count = 1