Replace Maven CI pipeline with a simple "Hello World" workflow in .woodpecker.

This commit is contained in:
2026-03-07 11:01:23 +01:00
parent 6abd0ce862
commit 53b10b142e
2 changed files with 9 additions and 25 deletions
+9
View File
@@ -0,0 +1,9 @@
when:
- event: push
branch: main
steps: hello
- name: hello
image: alpine
commands:
- echo "Hello World!"