mirror of
https://github.com/ditkrg/todo-to-issue-action.git
synced 2026-01-25 07:16:42 +00:00
Fix incorrect default value
This commit is contained in:
2
main.py
2
main.py
@@ -43,7 +43,7 @@ class GitHubClient(object):
|
||||
base_url = 'https://api.github.com/repos/'
|
||||
|
||||
def __init__(self):
|
||||
self.repo = os.getenv('INPUT_REPO', 'alstr/todo-test')
|
||||
self.repo = os.getenv('INPUT_REPO')
|
||||
self.before = os.getenv('INPUT_BEFORE')
|
||||
self.sha = os.getenv('INPUT_SHA')
|
||||
self.token = os.getenv('INPUT_TOKEN')
|
||||
|
||||
Reference in New Issue
Block a user