4
0
mirror of https://github.com/QuasarApp/QuasarAppCI.git synced 2025-04-28 22:54:33 +00:00
QuasarAppCI/BuildBotLib/buildBotChangeSource.py
2021-09-09 10:56:07 +03:00

21 lines
738 B
Python

# This Python file uses the following encoding: utf-8
from BuildBotLib.buildBotModule import BuildBotModule
from BuildBotLib.secretManager import SecretManager
from pathlib import Path
from BuildBotLib.customgithubhandler import CustomGitHubHandler
class BuildBotChangeSource(BuildBotModule):
def __init__(self, masterConf):
BuildBotModule.__init__(self, masterConf)
secretpath = str(Path.home()) + "/buildBotSecret/secret.json"
secret = SecretManager(secretpath)
self.masterConf['www']['change_hook_dialects'] = {
'github':
{
'secret': secret.getValue('WebHook'),
'class': CustomGitHubHandler
},
}