From 9120e59895148de34e4ae02bde94c8b02e2059e1 Mon Sep 17 00:00:00 2001 From: Admin Date: Thu, 12 Feb 2026 00:38:21 +0530 Subject: [PATCH 1/7] Create pipeline test-m2 --- .../projects/demo1/pipelines/testm2.yaml | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .harness/orgs/default/projects/demo1/pipelines/testm2.yaml diff --git a/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml b/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml new file mode 100644 index 0000000..b63dc2c --- /dev/null +++ b/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml @@ -0,0 +1,22 @@ +pipeline: + name: test-m2 + identifier: testm2 + projectIdentifier: demo1 + orgIdentifier: default + tags: {} + stages: + - stage: + name: sgtage1 + identifier: sgtage1 + description: "" + type: Custom + spec: + execution: + steps: + - step: + type: Wait + name: Wait_1 + identifier: Wait_1 + spec: + duration: 10m + tags: {} From 08f9282e3e2b6da3dd745837ea1c39c953ef528d Mon Sep 17 00:00:00 2001 From: Admin Date: Thu, 12 Feb 2026 00:39:11 +0530 Subject: [PATCH 2/7] Update pipeline test-m2 --- .harness/orgs/default/projects/demo1/pipelines/testm2.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml b/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml index b63dc2c..06d47f1 100644 --- a/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml +++ b/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml @@ -20,3 +20,6 @@ pipeline: spec: duration: 10m tags: {} + sendGitStatus: + enabled: true + name: test From 3cab7bd7807ad1f808ca9a0a27f06823daa9e15b Mon Sep 17 00:00:00 2001 From: Admin Date: Fri, 20 Feb 2026 11:26:21 +0530 Subject: [PATCH 3/7] Update pipeline test-m2 --- .../default/projects/demo1/pipelines/testm2.yaml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml b/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml index 06d47f1..8594c02 100644 --- a/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml +++ b/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml @@ -14,11 +14,19 @@ pipeline: execution: steps: - step: - type: Wait - name: Wait_1 - identifier: Wait_1 + type: ShellScript + name: ShellScript_1 + identifier: ShellScript_1 spec: - duration: 10m + shell: Bash + executionTarget: {} + source: + type: Inline + spec: + script: echo 1 + environmentVariables: [] + outputVariables: [] + timeout: 10m tags: {} sendGitStatus: enabled: true From 6ab26b5eeaa678d1c87907d91aab34b86a5d8e5e Mon Sep 17 00:00:00 2001 From: Admin Date: Mon, 23 Feb 2026 18:29:21 +0530 Subject: [PATCH 4/7] Update pipeline test-m2 --- .../projects/demo1/pipelines/testm2.yaml | 57 +++++++++++++------ 1 file changed, 40 insertions(+), 17 deletions(-) diff --git a/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml b/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml index 8594c02..f2cb1b9 100644 --- a/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml +++ b/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml @@ -6,28 +6,51 @@ pipeline: tags: {} stages: - stage: - name: sgtage1 - identifier: sgtage1 + name: stage1 + identifier: stage1 description: "" type: Custom spec: execution: steps: - step: - type: ShellScript - name: ShellScript_1 - identifier: ShellScript_1 + type: Wait + name: Wait_1 + identifier: Wait_1 spec: - shell: Bash - executionTarget: {} - source: - type: Inline - spec: - script: echo 1 - environmentVariables: [] - outputVariables: [] - timeout: 10m + duration: 10m + tags: {} + - stage: + name: stage2 + identifier: stage2 + depends-on: + - stage1 + description: "" + type: Custom + spec: + execution: + steps: + - step: + type: Wait + name: Wait_1 + identifier: Wait_1 + spec: + duration: 10m + tags: {} + - stage: + name: stage3 + identifier: stage3 + depends-on: + - stage1 + description: "" + type: Custom + spec: + execution: + steps: + - step: + type: Wait + name: Wait_1 + identifier: Wait_1 + spec: + duration: 10m tags: {} - sendGitStatus: - enabled: true - name: test From da9a8e56b1b22d612222c0aee2a9c8f12f127728 Mon Sep 17 00:00:00 2001 From: Admin Date: Tue, 24 Feb 2026 15:27:03 +0530 Subject: [PATCH 5/7] Update pipeline test-m2 --- .../projects/demo1/pipelines/testm2.yaml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml b/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml index f2cb1b9..6b0de78 100644 --- a/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml +++ b/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml @@ -54,3 +54,26 @@ pipeline: spec: duration: 10m tags: {} + - stage: + name: stage4 + identifier: stage4 + description: "" + type: Custom + spec: + execution: + steps: + - step: + type: ShellScript + name: ShellScript_1 + identifier: ShellScript_1 + spec: + shell: Bash + executionTarget: {} + source: + type: Inline + spec: + script: echo 1 + environmentVariables: [] + outputVariables: [] + timeout: 10m + tags: {} From 160f3d18f9919e6def75850c1028f1bfa74e8339 Mon Sep 17 00:00:00 2001 From: Admin Date: Tue, 24 Feb 2026 15:27:52 +0530 Subject: [PATCH 6/7] Update pipeline test-m2 --- .../default/projects/demo1/pipelines/testm2.yaml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml b/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml index 6b0de78..86ca369 100644 --- a/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml +++ b/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml @@ -63,17 +63,9 @@ pipeline: execution: steps: - step: - type: ShellScript - name: ShellScript_1 - identifier: ShellScript_1 + type: Wait + name: Wait_1 + identifier: Wait_1 spec: - shell: Bash - executionTarget: {} - source: - type: Inline - spec: - script: echo 1 - environmentVariables: [] - outputVariables: [] - timeout: 10m + duration: 10m tags: {} From e9c0912f7c2e81d449c8e73fce9ea6b016cfb72f Mon Sep 17 00:00:00 2001 From: Admin Date: Wed, 25 Feb 2026 12:05:57 +0530 Subject: [PATCH 7/7] Update pipeline test-m2 --- .../default/projects/demo1/pipelines/testm2.yaml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml b/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml index 86ca369..f2cb1b9 100644 --- a/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml +++ b/.harness/orgs/default/projects/demo1/pipelines/testm2.yaml @@ -54,18 +54,3 @@ pipeline: spec: duration: 10m tags: {} - - stage: - name: stage4 - identifier: stage4 - description: "" - type: Custom - spec: - execution: - steps: - - step: - type: Wait - name: Wait_1 - identifier: Wait_1 - spec: - duration: 10m - tags: {}