From 64a9e90138003ffce1ee242d87dc2febf188792d Mon Sep 17 00:00:00 2001 From: Dave Kowalski Date: Sun, 16 Aug 2026 06:28:26 +0000 Subject: [PATCH] ci: add validate workflow to enable Hub review fan-out --- .gitea/workflows/validate.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/validate.yml diff --git a/.gitea/workflows/validate.yml b/.gitea/workflows/validate.yml new file mode 100644 index 0000000..b972fca --- /dev/null +++ b/.gitea/workflows/validate.yml @@ -0,0 +1,18 @@ +name: validate +on: + push: + branches: [main] + pull_request: +jobs: + validate: + runs-on: fritzlab + timeout-minutes: 5 + steps: + - uses: actions/checkout@v4 + - name: check action.yaml exists and has required fields + run: | + set -euo pipefail + test -f action.yaml || { echo "FATAL: action.yaml missing"; exit 1; } + grep -q "^name:" action.yaml + grep -q "^runs:" action.yaml + echo "action.yaml OK"