diff options
author | 2020-12-19 19:18:45 +0200 | |
---|---|---|
committer | 2020-12-19 19:18:45 +0200 | |
commit | 7d3180c91d65f959a8374167edd22486c1175ca7 (patch) | |
tree | 89622aca1db1490a871e65ff74ed9c14452a2772 | |
parent | Put Git SHA to container on container build (diff) |
Add Git SHA as constant
-rw-r--r-- | bot/constants.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index 5e97fa2d..0325066a 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -313,6 +313,8 @@ WHITELISTED_CHANNELS = ( Channels.sprint_documentation, ) +GIT_SHA = environ.get("GIT_SHA", "foobar") + # Bot replies ERROR_REPLIES = [ "Please don't do that.", |