add default commit_message

This commit is contained in:
Noah Tran
2022-08-14 13:32:31 +07:00
parent a8b1d413c8
commit c65eede1ba

View File

@@ -47,7 +47,7 @@ commit_by_me = os.getenv('INPUT_COMMIT_BY_ME')
ignored_repos_name = str(os.getenv('INPUT_IGNORED_REPOS') or '').replace(' ', '').split(',') ignored_repos_name = str(os.getenv('INPUT_IGNORED_REPOS') or '').replace(' ', '').split(',')
show_updated_date = os.getenv('INPUT_SHOW_UPDATED_DATE') show_updated_date = os.getenv('INPUT_SHOW_UPDATED_DATE')
updated_date_format = os.getenv('INPUT_UPDATED_DATE_FORMAT') updated_date_format = os.getenv('INPUT_UPDATED_DATE_FORMAT')
commit_message = os.getenv('INPUT_COMMIT_MESSAGE') commit_message = os.getenv('INPUT_COMMIT_MESSAGE', 'sync')
commit_username = os.getenv('INPUT_COMMIT_USERNAME') commit_username = os.getenv('INPUT_COMMIT_USERNAME')
commit_email = os.getenv('INPUT_COMMIT_EMAIL') commit_email = os.getenv('INPUT_COMMIT_EMAIL')
show_total_code_time = os.getenv('INPUT_SHOW_TOTAL_CODE_TIME') show_total_code_time = os.getenv('INPUT_SHOW_TOTAL_CODE_TIME')