From 00ab95d343b8a031461c86bbe237d73a477f3fea Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Mon, 12 Feb 2024 22:10:50 -0800 Subject: [PATCH] #120 Test initial gitea actions workflow --- homelab/.gitea/workflows/first-action.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 homelab/.gitea/workflows/first-action.yaml 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