diff --git a/.gitea/workflows/example-manual-hello.yml b/.gitea/workflows/example-manual-hello.yml new file mode 100644 index 0000000..0c3fa75 --- /dev/null +++ b/.gitea/workflows/example-manual-hello.yml @@ -0,0 +1,11 @@ +name: Hello World (Manual) +on: + workflow_dispatch: + push: + # branches: [ main ] # Tai [ feature/ci-container ] + branches: [feature/ci-container] +jobs: + greet: + runs-on: ubuntu-latest + steps: + - run: echo "Hello"