From b61afc7733407ae721d6652fc877ff07c8180d56 Mon Sep 17 00:00:00 2001 From: Kamenlom Date: Fri, 27 Mar 2026 16:15:57 +0200 Subject: [PATCH 01/10] Add step for all branches --- woodpecker.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/woodpecker.yml b/woodpecker.yml index 7fcd69e..eefa3a1 100644 --- a/woodpecker.yml +++ b/woodpecker.yml @@ -72,3 +72,10 @@ steps: image: alpine:latest commands: - sleep 0.7 + + global-step: + image: alpine:latest + commands: + - echo "This runs on push for all branches" + when: + event: push From a9d323798f80a449612396a88f90d19924703976 Mon Sep 17 00:00:00 2001 From: Kamenlom Date: Fri, 27 Mar 2026 16:19:56 +0200 Subject: [PATCH 02/10] debug --- woodpecker.yml | 43 +++++++++++++++++++++++++++++++++++++++---- 1 file changed, 39 insertions(+), 4 deletions(-) diff --git a/woodpecker.yml b/woodpecker.yml index eefa3a1..e426b1d 100644 --- a/woodpecker.yml +++ b/woodpecker.yml @@ -1,77 +1,112 @@ # Woodpecker CI configuration # Migrated from GitHub Actions workflow -when: - branch: main - event: push - steps: # Job: sleep-job sleep-1: image: alpine:latest commands: - sleep 2 + when: + branch: main + event: push sleep-2: image: alpine:latest commands: - sleep 2 + when: + branch: main + event: push sleep-3: image: alpine:latest commands: - sleep 2 + when: + branch: main + event: push sleep-4: image: alpine:latest commands: - sleep 2 + when: + branch: main + event: push sleep-5: image: alpine:latest commands: - sleep 2 + when: + branch: main + event: push sleep-6: image: alpine:latest commands: - sleep 2 + when: + branch: main + event: push sleep-7: image: alpine:latest commands: - sleep 0.8 + when: + branch: main + event: push sleep-8: image: alpine:latest commands: - sleep 0.9 + when: + branch: main + event: push sleep-9: image: alpine:latest commands: - sleep 1 + when: + branch: main + event: push sleep-10: image: alpine:latest commands: - sleep 1.1 + when: + branch: main + event: push # Job: sleep-job-2 sleep-11: image: alpine:latest commands: - sleep 0.9 + when: + branch: main + event: push sleep-12: image: alpine:latest commands: - sleep 0.8 + when: + branch: main + event: push sleep-13: image: alpine:latest commands: - sleep 0.7 + when: + branch: main + event: push global-step: image: alpine:latest From 6297df4171740a763c9a88c5e5e3fdcb6a93a26a Mon Sep 17 00:00:00 2001 From: Kamenlom Date: Fri, 27 Mar 2026 16:22:15 +0200 Subject: [PATCH 03/10] test --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ec37a03..46cb07f 100644 --- a/README.md +++ b/README.md @@ -10,4 +10,4 @@ f asf sa hjadsjgksd shjasfhkjsah jjjllhhh -oookkkkkk +oookkkkkkkk From 4590692b475c2360aff35b98e8690ab9ba834f87 Mon Sep 17 00:00:00 2001 From: Kamenlom Date: Fri, 27 Mar 2026 16:26:24 +0200 Subject: [PATCH 04/10] Don't build the PR event --- woodpecker.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/woodpecker.yml b/woodpecker.yml index e426b1d..e62d1a2 100644 --- a/woodpecker.yml +++ b/woodpecker.yml @@ -114,3 +114,4 @@ steps: - echo "This runs on push for all branches" when: event: push + branch: /.*/ From fd12a9632418567e760c41c7ba7fa57341a2d571 Mon Sep 17 00:00:00 2001 From: Kamenlom Date: Fri, 27 Mar 2026 16:53:06 +0200 Subject: [PATCH 05/10] test --- woodpecker.yml | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/woodpecker.yml b/woodpecker.yml index e62d1a2..bd38d53 100644 --- a/woodpecker.yml +++ b/woodpecker.yml @@ -1,6 +1,9 @@ # Woodpecker CI configuration # Migrated from GitHub Actions workflow +when: + event: push + steps: # Job: sleep-job sleep-1: @@ -9,7 +12,6 @@ steps: - sleep 2 when: branch: main - event: push sleep-2: image: alpine:latest @@ -17,7 +19,6 @@ steps: - sleep 2 when: branch: main - event: push sleep-3: image: alpine:latest @@ -25,7 +26,6 @@ steps: - sleep 2 when: branch: main - event: push sleep-4: image: alpine:latest @@ -33,7 +33,6 @@ steps: - sleep 2 when: branch: main - event: push sleep-5: image: alpine:latest @@ -41,7 +40,6 @@ steps: - sleep 2 when: branch: main - event: push sleep-6: image: alpine:latest @@ -49,7 +47,6 @@ steps: - sleep 2 when: branch: main - event: push sleep-7: image: alpine:latest @@ -57,7 +54,6 @@ steps: - sleep 0.8 when: branch: main - event: push sleep-8: image: alpine:latest @@ -65,7 +61,6 @@ steps: - sleep 0.9 when: branch: main - event: push sleep-9: image: alpine:latest @@ -73,7 +68,6 @@ steps: - sleep 1 when: branch: main - event: push sleep-10: image: alpine:latest @@ -81,7 +75,6 @@ steps: - sleep 1.1 when: branch: main - event: push # Job: sleep-job-2 sleep-11: @@ -90,7 +83,6 @@ steps: - sleep 0.9 when: branch: main - event: push sleep-12: image: alpine:latest @@ -98,7 +90,6 @@ steps: - sleep 0.8 when: branch: main - event: push sleep-13: image: alpine:latest @@ -106,12 +97,10 @@ steps: - sleep 0.7 when: branch: main - event: push global-step: image: alpine:latest commands: - echo "This runs on push for all branches" when: - event: push branch: /.*/ From b1076f762694c331316e36430b71369fe87f0096 Mon Sep 17 00:00:00 2001 From: Kamenlom Date: Fri, 27 Mar 2026 16:58:04 +0200 Subject: [PATCH 06/10] test --- woodpecker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/woodpecker.yml b/woodpecker.yml index bd38d53..48529a1 100644 --- a/woodpecker.yml +++ b/woodpecker.yml @@ -103,4 +103,4 @@ steps: commands: - echo "This runs on push for all branches" when: - branch: /.*/ + branch: '**' From 96db5c4a7d41e7697fde15f24f460e1031571cf8 Mon Sep 17 00:00:00 2001 From: Kamenlom Date: Fri, 27 Mar 2026 17:02:09 +0200 Subject: [PATCH 07/10] test 2222 --- 1.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1.txt b/1.txt index d5e3af4..b24c67a 100644 --- a/1.txt +++ b/1.txt @@ -1,5 +1,5 @@ 1111 -222 +2222 333 444 555 From 92a786d85e7315d38b8bd314e63ef0b58d9c71a8 Mon Sep 17 00:00:00 2001 From: Kamenlom Date: Fri, 27 Mar 2026 17:02:20 +0200 Subject: [PATCH 08/10] test 3333 --- 1.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1.txt b/1.txt index b24c67a..cc5d931 100644 --- a/1.txt +++ b/1.txt @@ -1,6 +1,6 @@ 1111 2222 -333 +3333 444 555 666 From 5a45045ef6cc0e561230f8aa1434bba22276fe56 Mon Sep 17 00:00:00 2001 From: Kamenlom Date: Fri, 27 Mar 2026 17:02:29 +0200 Subject: [PATCH 09/10] test 4444 --- 1.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1.txt b/1.txt index cc5d931..c654017 100644 --- a/1.txt +++ b/1.txt @@ -1,7 +1,7 @@ 1111 2222 3333 -444 +4444 555 666 777 From fbdfb5e904d88d22f3b7670322b1c12aa5ae6a4d Mon Sep 17 00:00:00 2001 From: Kamenlom Date: Fri, 27 Mar 2026 18:12:24 +0200 Subject: [PATCH 10/10] test --- 1.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1.txt b/1.txt index c654017..da4ede4 100644 --- a/1.txt +++ b/1.txt @@ -2,7 +2,7 @@ 2222 3333 4444 -555 +5555 666 777 888