Add safe ordinary Gitea CI

This commit is contained in:
2026-07-29 11:57:00 -07:00
parent 634092feca
commit be0f8ec561
3 changed files with 159 additions and 0 deletions

13
.gitea/onboarding.json Normal file
View File

@@ -0,0 +1,13 @@
{
"cache": {
"mode": "none"
},
"deployment": null,
"image_build": null,
"ordinary_ci": {
"command": "scripts/ci",
"timeout_minutes": 15
},
"repository": "ajaynomics/context-kit",
"version": 1
}

View File

@@ -0,0 +1,27 @@
# Managed by gitea-project-onboarding.py.
# Edit .gitea/onboarding.json and rerun the sysadmin onboarding tool.
name: Golden Path CI
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Check out repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Run project CI
shell: bash
run: |
set -euo pipefail
scripts/ci