From cff99ee7cd00a04747a4bbb53823be06595fdbde Mon Sep 17 00:00:00 2001 From: Ross Brodbeck Date: Wed, 15 Apr 2020 08:08:02 -0400 Subject: [PATCH] Add debug mode to action definition --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index 5217575e..e05cf23b 100644 --- a/action.yml +++ b/action.yml @@ -33,6 +33,9 @@ inputs: operations-per-run: description: 'The maximum number of operations per run, used to control rate limiting.' default: 30 + debug-only: + description: 'Run the processor in debug mode without actually performing any operations on live issues.' + default: false runs: using: 'node12' main: 'dist/index.js'