From 07b45fecd2fc85cffb531f3f8daa80aec0aa2d4c Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Mon, 29 Mar 2021 21:50:49 -0400 Subject: [PATCH] Alphabetize the list of inputs in action.yml (#38) --- action.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/action.yml b/action.yml index 4d3e9b5..8188b93 100644 --- a/action.yml +++ b/action.yml @@ -7,22 +7,22 @@ branding: color: 'gray-dark' inputs: - inline: - description: 'Value passed to the --inline flag. Options: yes | no. Default value: yes.' - default: 'yes' coverage: description: 'Value determining whether to test with coverage or not. Options: true | false. Default value: true.' default: 'true' depwarn: description: 'Value passed to the --depwarn flag. Options: yes | no | error. Default value: yes.' default: 'yes' - project: - description: 'Value passed to the --project flag. The default value is the repository root: "@."' - default: '@.' + inline: + description: 'Value passed to the --inline flag. Options: yes | no. Default value: yes.' + default: 'yes' prefix: description: 'Value inserted in front of the julia command, e.g. for running xvfb-run julia [...]' default: '' required: false + project: + description: 'Value passed to the --project flag. The default value is the repository root: "@."' + default: '@.' runs: using: 'composite'