aboutsummaryrefslogtreecommitdiffstats
path: root/local/handler/TravisHandler.py
blob: bdfb484ad350298e9c0c0b00e84db058612270b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
from ..utility import *

def handle(data, theme):
    if isStatusVisible(data['repository']['url'], data['status_message'].lower()):
        theme.travis(
            repo = data['repository']['name'],
            status = data['status_message'],
            commitId = data['commit'],
            commitMessage = data['message'],
            commitAuthor = data['author_name'],
            buildUrl = data['build_url']
        )

© 2014-2024 Faster IT GmbH | imprint | privacy policy