Defaults are set in action.yml now.

This commit is contained in:
Robert de Bock 2020-11-19 13:29:27 +01:00 committed by GitHub
parent 1128faa949
commit 53494c82fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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'