Skip to content

Commit 0d31ec5

Browse files
committed
🔖 Release v1.15.4 [skip ci]
1 parent 21afbad commit 0d31ec5

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [v1.15.4] - 2021-11-29
2+
3+
[Release notes](https://github.com/betahuhn/repo-file-sync-action/releases/tag/v1.15.4) · [Compare](https://github.com/betahuhn/repo-file-sync-action/compare/v1.15.3...v1.15.4) · [Tag](https://github.com/betahuhn/repo-file-sync-action/tree/v1.15.4) · Archive ([zip](https://github.com/betahuhn/repo-file-sync-action/archive/v1.15.4.zip) · [tar.gz](https://github.com/betahuhn/repo-file-sync-action/archive/v1.15.4.tar.gz))
4+
5+
### Dependency updates
6+
7+
- [`1e2c979`](https://github.com/betahuhn/repo-file-sync-action/commit/1e2c979) Bump action-input-parser from 1.2.22 to 1.2.23
8+
19
## [v1.15.3] - 2021-11-22
210

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

dist/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4636,7 +4636,7 @@ var DEFAULT_OPTIONS = {
46364636
disableable: false
46374637
};
46384638
var getEnvVar = function (key) {
4639-
var parsed = process.env["INPUT_" + key.replace(/ /g, '_').toUpperCase()];
4639+
var parsed = process.env["INPUT_".concat(key.replace(/ /g, '_').toUpperCase())];
46404640
var raw = process.env[key];
46414641
return parsed || raw || undefined;
46424642
};
@@ -4694,7 +4694,7 @@ var getInput = function (key, opts) {
46944694
var parsed = val !== undefined ? parseValue(val, options.type) : undefined;
46954695
if (parsed === undefined) {
46964696
if (options.required)
4697-
throw new Error("Input `" + options.key + "` is required but was not provided.");
4697+
throw new Error("Input `".concat(options.key, "` is required but was not provided."));
46984698
if (options.default !== undefined)
46994699
return options.default;
47004700
return undefined;

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "repo-file-sync-action",
3-
"version": "1.15.3",
3+
"version": "1.15.4",
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)