Skip to content

Commit 54c383f

Browse files
committed
🔖 Release v1.17.14 [skip ci]
1 parent 64a0312 commit 54c383f

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## [v1.17.14] - 2022-05-05
2+
3+
[Release notes](https://github.com/betahuhn/repo-file-sync-action/releases/tag/v1.17.14) · [Compare](https://github.com/betahuhn/repo-file-sync-action/compare/v1.17.13...v1.17.14) · [Tag](https://github.com/betahuhn/repo-file-sync-action/tree/v1.17.14) · Archive ([zip](https://github.com/betahuhn/repo-file-sync-action/archive/v1.17.14.zip) · [tar.gz](https://github.com/betahuhn/repo-file-sync-action/archive/v1.17.14.tar.gz))
4+
5+
### Bug fixes
6+
7+
- [`64a0312`](https://github.com/betahuhn/repo-file-sync-action/commit/64a0312) Sanitize `/.` from branch name (#200)
8+
(Issues: [`#200`](https://github.com/betahuhn/repo-file-sync-action/issues/200))
9+
10+
### Dependency updates
11+
12+
- [`1ec3cb1`](https://github.com/betahuhn/repo-file-sync-action/commit/1ec3cb1) Bump action-input-parser from 1.2.31 to 1.2.32
13+
114
## [v1.17.13] - 2022-05-02
215

316
[Release notes](https://github.com/betahuhn/repo-file-sync-action/releases/tag/v1.17.13) · [Compare](https://github.com/betahuhn/repo-file-sync-action/compare/v1.17.12...v1.17.13) · [Tag](https://github.com/betahuhn/repo-file-sync-action/tree/v1.17.13) · Archive ([zip](https://github.com/betahuhn/repo-file-sync-action/archive/v1.17.13.zip) · [tar.gz](https://github.com/betahuhn/repo-file-sync-action/archive/v1.17.13.tar.gz))

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21519,7 +21519,7 @@ class Git {
2151921519
async createPrBranch() {
2152021520
const prefix = BRANCH_PREFIX.replace('SOURCE_REPO_NAME', GITHUB_REPOSITORY.split('/')[1])
2152121521

21522-
let newBranch = path.join(prefix, this.repo.branch).replace(/\\/g, '/')
21522+
let newBranch = path.join(prefix, this.repo.branch).replace(/\\/g, '/').replace(/\/\./g, '/')
2152321523

2152421524
if (OVERWRITE_EXISTING_PR === false) {
2152521525
newBranch += `-${ Math.round((new Date()).getTime() / 1000) }`

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "repo-file-sync-action",
3-
"version": "1.17.13",
3+
"version": "1.17.14",
44
"description": "GitHub Action to keep files like Action workflows or entire directories in sync between multiple repositories.",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)