From 5d9e95c5952fbdae6811685a3a75923ac8ec6da2 Mon Sep 17 00:00:00 2001 From: alstr Date: Tue, 19 May 2020 13:10:03 +0100 Subject: [PATCH] Add inputs to action.yml --- action.yml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 9573a89..c2b21be 100644 --- a/action.yml +++ b/action.yml @@ -6,4 +6,23 @@ runs: image: "Dockerfile" branding: icon: "check-square" - color: "orange" \ No newline at end of file + color: "orange" +inputs: + REPO: + description: "The path to the repository where the action will be used, e.g. 'alstr/my-repo' (automatically set)" + required: true + BEFORE: + description: "The SHA of the last pushed commit (automatically set)" + required: true + SHA: + description: "The SHA of the latest commit (automatically set)" + required: true + TOKEN: + description: "The GitHub access token to allow us to retrieve, create and update issues (automatically set)" + required: true + LABEL: + description: "The label that will be used to identify TODO comments (by default this is # TODO for Python)" + required: true + COMMENT_MARKER: + description: "The marker used to signify a line comment in your code (by default this is # for Python)" + required: true