Skip to content

Commit db437ea

Browse files
authored
chore(ci):skip clone step in notification pipeline (#12841)
Signed-off-by: nabim777 <[email protected]>
1 parent 67d08a4 commit db437ea

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.drone.star

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,6 +683,9 @@ def notify(ctx):
683683
"kind": "pipeline",
684684
"type": "docker",
685685
"name": "chat-notifications",
686+
"clone": {
687+
"disable": True,
688+
},
686689
"steps": [
687690
{
688691
"name": "notify-matrix",
@@ -693,7 +696,8 @@ def notify(ctx):
693696
},
694697
},
695698
"commands": [
696-
"bash /drone/src/tests/drone/notification.sh",
699+
"wget https://raw.githubusercontent.com/owncloud/ocis/%s/tests/config/drone/notification.sh" % ctx.build.commit,
700+
"bash notification.sh",
697701
],
698702
},
699703
],

0 commit comments

Comments
 (0)