mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-06 11:10:08 +00:00
13 lines
266 B
Ruby
13 lines
266 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Ci
|
|
module BuildsHelper
|
|
def build_failed_issue_options
|
|
{
|
|
title: safe_format(_("Job Failed #%{build_id}"), build_id: @build.id),
|
|
description: project_job_url(@project, @build)
|
|
}
|
|
end
|
|
end
|
|
end
|