added ci automation

This commit is contained in:
rmikl 2025-09-14 21:06:25 +02:00
parent e642a804ca
commit 80e926d31e

View file

@ -0,0 +1,17 @@
name: Hello World Workflow
on:
workflow_dispatch: # Allows manual triggering via GitHub UI
push: # Optional: Trigger on push to main branch
branches:
- main
- feature/added-gh-workflow
jobs:
hello-world-job:
name: Print Hello World
runs-on: [ "centr-gh-runner" ] # Use your custom runner
steps:
- name: Print Hello World
run: echo "Hello World!"