send nightly notification to builds channel

This commit is contained in:
Prajwol Amatya
2024-04-16 09:55:20 +05:45
committed by Phil Davis
parent 7ff0771e4d
commit 517b28d70a
+4 -1
View File
@@ -153,6 +153,7 @@ config = {
},
"rocketchat": {
"channel": "infinitescale",
"channel_builds": "builds",
"from_secret": "rocketchat_talk_webhook",
},
"binaryReleases": {
@@ -1959,8 +1960,10 @@ def makeGoGenerate(module):
def notify(ctx):
status = ["failure"]
channel = config["rocketchat"]["channel"]
if ctx.build.event == "cron":
status.append("success")
channel = config["rocketchat"]["channel_builds"]
return {
"kind": "pipeline",
@@ -1977,7 +1980,7 @@ def notify(ctx):
"webhook": {
"from_secret": config["rocketchat"]["from_secret"],
},
"channel": config["rocketchat"]["channel"],
"channel": channel,
},
},
],