Add Forgejo CI smoke and image workflow (tier 3 T04)

This commit is contained in:
2026-07-06 17:11:17 +02:00
parent 6e3e7e6176
commit 34c6492013
2 changed files with 77 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
name: CI Smoke
on:
push:
branches:
- main
workflow_dispatch:
jobs:
host-smoke:
runs-on: self-hosted
steps:
- name: Routing probe (host runner)
run: |
set -eu
echo "repository=${GITHUB_REPOSITORY:-unknown}"
echo "sha=${GITHUB_SHA:-unknown}"
echo "runner=${RUNNER_NAME:-unknown}"
uname -a
container-smoke:
runs-on: ubuntu-latest
steps:
- name: Routing probe (container label)
run: |
set -eu
echo "container-smoke ok for ${GITHUB_REPOSITORY:-unknown}"