commit 96867a381721044b33222bab8d83f0842659a10f Author: goahmedben Date: Wed Mar 25 09:51:21 2026 +0100 Add first Woodpecker pipeline 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}"