From c4842d126b0a11a812e0857937629f9e32ccfdbb Mon Sep 17 00:00:00 2001 From: K0MPLEXWorksTogether Date: Sun, 2 Nov 2025 23:04:12 +0530 Subject: [PATCH] [feat] Test actions --- .gitea/workflows/hello-world-yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitea/workflows/hello-world-yaml diff --git a/.gitea/workflows/hello-world-yaml b/.gitea/workflows/hello-world-yaml new file mode 100644 index 0000000..035d355 --- /dev/null +++ b/.gitea/workflows/hello-world-yaml @@ -0,0 +1,11 @@ +name: Hello World + +on: + workflow_dispatch: + +jobs: + say-hello: + runs-on: ubuntu-latest + steps: + - name: Print Hello World + run: echo "Hello, World!" \ No newline at end of file