gpt4 book ai didi

jenkins - 在所有 Jenkins 页面上显示公告

转载 作者:行者123 更新时间:2023-12-02 10:57:55 25 4
gpt4 key购买 nike

是否有一种简单的方法或插件可以在 Jenkins 页面上为所有用户显示任何自定义消息?我想直接在 Jenkins 上显示重要的更改或操作,而不是向每个人发送电子邮件。我的意思是拥有类似于“Jenkins 将要关闭”的可配置面板,我可以显示它并可能更改颜色。我尝试寻找相应的插件,但一无所获。

最佳答案

好的,我会回答我的虚拟问题,也许稍后会有人查找。

有一个用于向页眉和页脚注入(inject)代码的插件: https://wiki.jenkins-ci.org/display/JENKINS/Page+Markup+Plugin它并不像从创建者页面下载那样容易找到(描述中的链接)。

没有额外的插件:就我而言,它更简单,因为添加系统消息就足够了(管理 jenkins -> 配置系统 -> 系统消息)。 您可以将 CSS 添加到 Jenkins\war\css\style.css 并在系统消息中使用它。我重复使用了“shutdown-msg”,当 Jenkins 要关闭时会显示它。

#shutdown-msg {
font-weight: bold;
color: white;
background-color: #ef2929;
text-align: center;
margin-left: 2em;
margin-right: 2em;
margin-bottom: 0.5em;
padding: 0.5em;
-moz-border-radius: 0.5em;
}

#yellow-msg {
font-weight: bold;
color: black;
background-color: #eded78;
text-align: center;
margin-left: 2em;
margin-right: 2em;
margin-bottom: 0.5em;
padding: 0.5em;
-moz-border-radius: 0.5em;
}

#green-msg {
font-weight: bold;
color: white;
background-color: #34ba51;
text-align: center;
margin-left: 2em;
margin-right: 2em;
margin-bottom: 0.5em;
padding: 0.5em;
-moz-border-radius: 0.5em;
}

#blue-msg {
font-weight: bold;
color: white;
background-color: #2d72d8;
text-align: center;
margin-left: 2em;
margin-right: 2em;
margin-bottom: 0.5em;
padding: 0.5em;
-moz-border-radius: 0.5em;
}

#grey-msg {
font-weight: bold;
color: white;
background-color: #6b7777;
text-align: center;
margin-left: 2em;
margin-right: 2em;
margin-bottom: 0.5em;
padding: 0.5em;
-moz-border-radius: 0.5em;
}
<div id="shutdown-msg">Red message</div> 
<div id="green-msg">Green message</div>
<div id="yellow-msg">Yellow message</div>
<div id="blue-msg">Blue message</div>
<div id="grey-msg">Grey message</div>

关于jenkins - 在所有 Jenkins 页面上显示公告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42628297/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com