当前,我正在尝试设置gitlab描述模板,我已经按照文档中的步骤进行操作,仍然没有用
步骤
.gitlab
目录,并在其中issue_templates
目录### Problem statement:
<!-- Explain the problem in simplest way which could be understood by layman -->
###Solution(Versions if necessary):
<!-- Start with solution, think about how you are going to solve, then implement. -->
<!-- Add Versions(V1, V2 etc) incase there are better ways to solve the problem -->
验证了几件事:
已经检查了当前使用的gitlab版本,它是13.2.4 Community Edition
根据文档,这些步骤将在master
中实施,我创建了一个步骤
仍然没有变化-我缺少什么东西
答案 0 :(得分:0)
这是人为错误,忘记使用扩展名select team, sum(avg_ftg) sum_avg_ftg
from (
select x.team, x.player, avg(t.f_total_ftg) avg_ftg
from mytable t
cross join lateral (
select t.f_team1 team, t.f_player1 player
union all select t.f_team2, t.f_player2
) x
group by x.team, x.player
) t
group by team
命名模板
答案 1 :(得分:0)
要检查的几件事:
.gitlab/issue_templates/
是否存在?.md
扩展名? (按照@TheViralGriffin的规定)master
,但可以是另一个文件:在GitLab的“存储库设置”中检查“默认分支”)?< / li>