From fea9fefd006d50e641e762b1f5d7f0af3b961f07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tjitse=20Efd=C3=A9?= Date: Fri, 22 Jul 2022 13:41:16 +0200 Subject: [PATCH] Fix yaml syntax --- action.yml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/action.yml b/action.yml index f862517..838fb20 100644 --- a/action.yml +++ b/action.yml @@ -2,25 +2,25 @@ name: 'clickup-get-tasks' description: 'Github action to fetch tasks from Clickup via the API' author: 'Tjitse-E' runs: - using: 'node12' - main: 'dist/index.js' + using: 'node12' + main: 'dist/index.js' inputs: - clickup_token: - description: Your clickup token - required: true - clickup_custom_task_ids: - description: A list of custom task IDS of which you want to change the status - required: true - clickup_team_id: - description: Your clickup team id - required: true - response_fields: - description: Fields that are in the response - required: false + clickup_token: + description: Your clickup token + required: true + clickup_custom_task_ids: + description: A list of custom task IDS of which you want to change the status + required: true + clickup_team_id: + description: Your clickup team id + required: true + response_fields: + description: Fields that are in the response + required: false convert_quotes: - description: Convert single and double quotes to html - required: false - default: true + description: Convert single and double quotes to html + required: false + default: true outputs: - clickup_tasks: - description: JSON object containing the clickup task info + clickup_tasks: + description: JSON object containing the clickup task info