Skip to content

Commit a1a391a

Browse files
Closes #3 - Clarifying warning
1 parent c125634 commit a1a391a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8806,7 +8806,7 @@ var require_action_library = __commonJS({
88068806
}
88078807
for (let e in environmentScoped) {
88088808
if (scopedItems[e]) {
8809-
core2.warning(`<<${e}>>: key and scope specified as env and input file var, env var will be used.`);
8809+
core2.warning(`<<${e}>>: was specified by both environment variable and input file. Environment variable will be used.`);
88108810
}
88118811
scopedItems[e] = environmentScoped[e];
88128812
}

src/action_library.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class action_library {
6565
}
6666
for (let e in environmentScoped) {
6767
if (scopedItems[e]) {
68-
core.warning(`<<${e}>>: key and scope specified as env and input file var, env var will be used.`);
68+
core.warning(`<<${e}>>: was specified by both environment variable and input file. Environment variable will be used.`);
6969
}
7070
scopedItems[e] = environmentScoped[e];
7171
}

0 commit comments

Comments
 (0)