From 53494c82fb8058b8a1053d09ffdc61f9c68d332d Mon Sep 17 00:00:00 2001 From: Robert de Bock Date: Thu, 19 Nov 2020 13:29:27 +0100 Subject: [PATCH] Defaults are set in action.yml now. --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 060cedc..cb4e304 100644 --- a/main.py +++ b/main.py @@ -20,7 +20,7 @@ def main(): comment_marker = os.getenv('INPUT_COMMENT_MARKER') label = os.getenv('INPUT_LABEL') token = os.getenv('INPUT_TOKEN') - close_issues = os.getenv('INPUT_CLOSE_ISSUES', 'true') == 'true' + close_issues = os.getenv('INPUT_CLOSE_ISSUES') # Load a file so we can see what language each file is written in and apply highlighting later. languages_url = 'https://raw.githubusercontent.com/github/linguist/master/lib/linguist/languages.yml'