diff --git a/runbot/runbot.py b/runbot/runbot.py index eea31e6e..cfe525db 100644 --- a/runbot/runbot.py +++ b/runbot/runbot.py @@ -745,14 +745,14 @@ class runbot_build(osv.osv): state = 'sucess' if build.result == 'ko': state = 'failure' - desc += " (runtime %ss)" % (real_build.job_time,) + desc += " (runtime %ss)" % (build.job_time,) else: continue status = { "state": state, "target_url": "http://%s/runbot/build/%s" % (runbot_domain, build.id), "description": desc, - "context": "continuous-integration/runbot" + "context": "ci/runbot" } _logger.debug("github updating status %s to %s", build.name, state) build.repo_id.github('/repos/:owner/:repo/statuses/%s' % build.name, status, ignore_errors=True) diff --git a/runbot_cla/runbot.py b/runbot_cla/runbot.py index 7f822122..c3b630b7 100644 --- a/runbot_cla/runbot.py +++ b/runbot_cla/runbot.py @@ -28,7 +28,7 @@ class runbot_build(openerp.models.Model): status = { "state": state, "target_url": "http://www.odoo.com/sign-cla", - "description": "Odoo CLA", + "description": "%s Odoo CLA signature check" % build.author, "context": "legal/cla" } build._log('check_cla', 'Check CLA %s' % state)