Skip to content

Commit

Permalink
docs: fix example (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
saitho committed Jul 19, 2020
1 parent 51346a4 commit 5f84fcd
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
]
}
]
]
}
```
Expand Down

0 comments on commit 5f84fcd

Please sign in to comment.