summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.forgejo/workflows/hello-world.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.forgejo/workflows/hello-world.yml b/.forgejo/workflows/hello-world.yml
new file mode 100644
index 0000000..e7efddd
--- /dev/null
+++ b/.forgejo/workflows/hello-world.yml
@@ -0,0 +1,15 @@
+name: Hello World
+
+on:
+ push:
+ branches:
+ - main
+ pull_request:
+ workflow_dispatch:
+
+jobs:
+ hello:
+ runs-on: docker
+ steps:
+ - name: Echo Hello World
+ run: echo "Hello World"