Issue #90 - Detect [FULLCI] or [FULL CI] on commit message to trigger Full CI tests.

This commit is contained in:
Daniel Thee Roperto 2018-05-04 16:23:33 +10:00
Родитель f4f701fa69
Коммит 2811aee764
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 34B665BDFEB356B7
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -14,6 +14,7 @@ class Configuration:
self.location = os.getenv('LOCATION', 'southcentralus')
self.source_branch = self.identify_source_branch()
self.fullci_branches = os.getenv('FULLCI_BRANCHES', 'master').split(':')
self.commit_message = os.getenv('TRAVIS_COMMIT_MESSAGE', None)
self.ssh_key = self.identify_ssh_key()
self.resource_group = self.identify_resource_group()
self.deployment_properties = self.generate_deployment_properties()
@ -77,4 +78,8 @@ class Configuration:
if self.source_branch in self.fullci_branches:
return True
message = self.commit_message.upper()
if '[FULL CI]' in message or '[FULLCI]' in message:
return True
return False