diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000000000000000000000000000000000000..62c5c483083ce14fccc4d35b461d9d0d45015fb8
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,15 @@
+kind: pipeline
+type: docker
+name: hello-world
+
+trigger:
+  branch:
+    - main
+  event:
+    - push
+
+steps:
+  - name: say-hello
+    image: busybox
+    commands:
+      - echo hello-world
\ No newline at end of file