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 37b79c2 commit ab1785cCopy full SHA for ab1785c
scripts/test/index.js
@@ -2,7 +2,8 @@ const core = require('@actions/core');
2
3
const os = core.getInput('os').split(',').map(x => x.trim());
4
const version = core.getInput('version').split(',').map(x => x.trim());
5
-const mysqlVersion = core.getInput('mysql_version').split(',').map(x => x.trim());
+const mysqlVersionInput = core.getInput('mysql_version') || '5';
6
+const mysqlVersion = mysqlVersionInput.split(',').map(x => x.trim());
7
8
core.setOutput('os', JSON.stringify(os));
9
core.setOutput('version', JSON.stringify(version));
0 commit comments