From 96867a381721044b33222bab8d83f0842659a10f Mon Sep 17 00:00:00 2001 From: goahmedben Date: Wed, 25 Mar 2026 09:51:21 +0100 Subject: [PATCH] Add first Woodpecker pipeline --- .woodpecker/pipeline.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .woodpecker/pipeline.yml diff --git a/.woodpecker/pipeline.yml b/.woodpecker/pipeline.yml new file mode 100644 index 0000000..7024f6f --- /dev/null +++ b/.woodpecker/pipeline.yml @@ -0,0 +1,11 @@ +when: + - event: push + branch: main + +steps: + - name: hello + image: alpine + commands: + - echo "Pipeline triggered!" + - echo "Branch: ${CI_COMMIT_BRANCH}" + - echo "Commit: ${CI_COMMIT_SHA}"