diff --git a/README.md b/README.md index 13d2f8b..9748c30 100644 --- a/README.md +++ b/README.md @@ -27,12 +27,20 @@ The plugin can be configured in the [**semantic-release** configuration file](ht "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", - ["@saithodev/semantic-release-backmerge", { - "branchName": "dev", - "plugins": ["@semantic-release/exec", { - "successCmd": "echo 'Version in master is ${nextRelease.version}' > test.txt && git add test.txt" - }] - }] + [ + "@saithodev/semantic-release-backmerge", + { + "branchName": "dev", + "plugins": [ + [ + "@semantic-release/exec", + { + "successCmd": "echo 'Version in master is ${nextRelease.version}' > test.txt && git add test.txt" + } + ] + ] + } + ] ] } ```