From 9d41ddc2e57dbf6b6f0b9478d52d81ecb2b22661 Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sat, 7 Mar 2026 11:07:12 +0100 Subject: [PATCH] Update Woodpecker workflow: switch branch to `develop` and add test step --- .woodpecker/first-test.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.woodpecker/first-test.yml b/.woodpecker/first-test.yml index f6165d1..8897962 100644 --- a/.woodpecker/first-test.yml +++ b/.woodpecker/first-test.yml @@ -1,9 +1,11 @@ when: - event: push - branch: main + branch: develop -steps: hello +steps: - name: hello image: alpine commands: - - echo "Hello World!" \ No newline at end of file + - echo "Hello World!" + - echo "This is a test step" +