Skip to content

Commit

Permalink
Fix env variable name TBTT_GITHUB_ACCESS_TOKEN
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuLamiot committed Aug 9, 2023
1 parent 6b28145 commit 28e1708
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-on_pr_main_bash.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- 'master'

env:
TBTT_GITHUB_TOKEN: tbtt_github_token
TBTT_GITHUB_ACCESS_TOKEN: tbtt_github_token
TBTT_SLACK_BOT_USER_TOKEN: tbtt_slack_bot_user_token
TBTT_SLACK_SIGNING_SECRET: tbtt_slack_signing_secret

Expand Down
2 changes: 1 addition & 1 deletion sources/TechTeamBot.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def __setup_keys(self):
"""
self.__load_key("TBTT_SLACK_SIGNING_SECRET", cst.APP_CONFIG_TOKEN_SLACK_SIGNING_SECRET)
self.__load_key("TBTT_SLACK_BOT_USER_TOKEN", cst.APP_CONFIG_TOKEN_SLACK_BOT_USER_TOKEN)
self.__load_key("TBTT_GITHUB_TOKEN", cst.APP_CONFIG_TOKEN_GITHUB_ACCESS_TOKEN)
self.__load_key("TBTT_GITHUB_ACCESS_TOKEN", cst.APP_CONFIG_TOKEN_GITHUB_ACCESS_TOKEN)

def __setup_slack_interaction_endpoint(self):
"""
Expand Down

0 comments on commit 28e1708

Please sign in to comment.