diff --git a/homelab/.gitea/workflows/first-action.yaml b/homelab/.gitea/workflows/first-action.yaml new file mode 100644 index 00000000..d459876c --- /dev/null +++ b/homelab/.gitea/workflows/first-action.yaml @@ -0,0 +1,14 @@ +name: First Gitea Action +run-name: ${{ gitea.actor }} is testin Gitea Actions +on: [push] + +jobs: + my-shell-script: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: List files and directories + run: | + ls ${{ gitea.workspace }} + run: echo "Job status: ${{ job.status }}" \ No newline at end of file