We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
/.
1 parent 0ee58a5 commit 64a0312Copy full SHA for 64a0312
src/git.js
@@ -123,7 +123,7 @@ class Git {
123
async createPrBranch() {
124
const prefix = BRANCH_PREFIX.replace('SOURCE_REPO_NAME', GITHUB_REPOSITORY.split('/')[1])
125
126
- let newBranch = path.join(prefix, this.repo.branch).replace(/\\/g, '/')
+ let newBranch = path.join(prefix, this.repo.branch).replace(/\\/g, '/').replace(/\/\./g, '/')
127
128
if (OVERWRITE_EXISTING_PR === false) {
129
newBranch += `-${ Math.round((new Date()).getTime() / 1000) }`
0 commit comments