Skip to content

Commit

Permalink
🔖 Release v1.13.4 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
BetaHuhnBot committed Sep 17, 2021
1 parent 7f838d5 commit e3109a8
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## [v1.13.4] - 2021-09-17

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

### Bug fixes

- [`7f838d5`](https://github.com/betahuhn/repo-file-sync-action/commit/7f838d5) Trim whitespace on repos list (#111)
(Issues: [`#111`](https://github.com/betahuhn/repo-file-sync-action/issues/111))

### Dependency updates

- [`d19a71d`](https://github.com/betahuhn/repo-file-sync-action/commit/d19a71d) Bump action-input-parser from 1.2.16 to 1.2.17
- [`ea75b37`](https://github.com/betahuhn/repo-file-sync-action/commit/ea75b37) Bump @vercel/ncc from 0.31.0 to 0.31.1

## [v1.13.3] - 2021-09-13

[Release notes](https://github.com/betahuhn/repo-file-sync-action/releases/tag/v1.13.3) · [Compare](https://github.com/betahuhn/repo-file-sync-action/compare/v1.13.2...v1.13.3) · [Tag](https://github.com/betahuhn/repo-file-sync-action/tree/v1.13.3) · Archive ([zip](https://github.com/betahuhn/repo-file-sync-action/archive/v1.13.3.zip) · [tar.gz](https://github.com/betahuhn/repo-file-sync-action/archive/v1.13.3.tar.gz))
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16921,7 +16921,7 @@ const parseConfig = async () => {
const groups = Array.isArray(rawObject) ? rawObject : [ rawObject ]

groups.forEach((group) => {
const repos = typeof group.repos === 'string' ? group.repos.split('\n').filter((n) => n) : group.repos
const repos = typeof group.repos === 'string' ? group.repos.split('\n').map((n) => n.trim()).filter((n) => n) : group.repos

repos.forEach((name) => {
const files = parseFiles(group.files)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "repo-file-sync-action",
"version": "1.13.3",
"version": "1.13.4",
"description": "GitHub Action to keep files like Action workflows or entire directories in sync between multiple repositories.",
"main": "dist/index.js",
"scripts": {
Expand Down

0 comments on commit e3109a8

Please sign in to comment.