From d68f5ec864c2c84f04df76bc414c0cb490c470fe Mon Sep 17 00:00:00 2001 From: takahi-i Date: Fri, 10 Apr 2015 11:30:38 +0900 Subject: [PATCH 1/4] Fix pipeline --- pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index fa50acb..4908b93 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -8,7 +8,7 @@ service: pipeline: - name: command_stage_1 type: command - command: cho "hello, world" + command: echo "fixed, world" - name: command_stage_2 type: command command: echo "hello, world" && sleep 1 From ba775df3de69fc35e04400d994c22eb89527950d Mon Sep 17 00:00:00 2001 From: takahi-i Date: Fri, 8 May 2015 16:38:51 +0900 Subject: [PATCH 2/4] Fix pipeline-with-filter.yml to pass a test --- pipeline-with-filter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline-with-filter.yml b/pipeline-with-filter.yml index 52eaa0b..f13340a 100644 --- a/pipeline-with-filter.yml +++ b/pipeline-with-filter.yml @@ -9,7 +9,7 @@ service: pipeline: - name: command_stage_1 type: command - command: cho "hello, world" + command: echo "fixed, world" - name: command_stage_2 type: command command: echo "hello, world" && sleep 1 From 0d586a8516b81d4dc2da405ca4e4df23bc9f5e66 Mon Sep 17 00:00:00 2001 From: Takahiko Ito Date: Fri, 8 May 2015 17:05:29 +0900 Subject: [PATCH 3/4] Tiny fix --- pipeline-with-filter.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipeline-with-filter.yml b/pipeline-with-filter.yml index f13340a..1499e97 100644 --- a/pipeline-with-filter.yml +++ b/pipeline-with-filter.yml @@ -2,14 +2,14 @@ service: type: github token: $GITHUB_TOKEN repo: walter-github-sample-for-test - from: $GITHUB_USER_NAME + from: walter-cd update: .walter filter: fix-* pipeline: - name: command_stage_1 type: command - command: echo "fixed, world" + command: echo "filtered fixed, world" - name: command_stage_2 type: command command: echo "hello, world" && sleep 1 From 76639cf527829800f1f833314ecf466eec76bfb5 Mon Sep 17 00:00:00 2001 From: takahi-i Date: Wed, 13 May 2015 16:22:33 +0900 Subject: [PATCH 4/4] Change filter pattern --- pipeline-with-filter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline-with-filter.yml b/pipeline-with-filter.yml index 1499e97..c4fe4ea 100644 --- a/pipeline-with-filter.yml +++ b/pipeline-with-filter.yml @@ -4,7 +4,7 @@ service: repo: walter-github-sample-for-test from: walter-cd update: .walter - filter: fix-* + filter: fix-.* pipeline: - name: command_stage_1