docs: clean up action comments — describe what we do, not what others had

This commit is contained in:
2026-05-22 17:56:40 +01:00
parent d61246e7e4
commit c01049dd5b
4 changed files with 21 additions and 36 deletions
+5 -9
View File
@@ -1,12 +1,8 @@
# Tinqs Checkout — replaces actions/checkout@v4
# Original: https://github.com/actions/checkout (GitHub-hosted, Node.js action)
# Why rewritten: actions/checkout requires Node.js runtime and GitHub API calls.
# On self-hosted Gitea (tinqs.com), it fails because it tries to hit api.github.com.
# This composite action uses plain git clone — works on any runner with git installed.
# Removed from original: submodules, LFS, sparse-checkout, GitHub token auth, persist-credentials.
# We only need depth, ref, and optional Gitea token for private repos.
# Author: Ozan / Claude Code — 2026-05-22
# Part of: tinqs/ci (Tinqs CI toolchain)
# tinqs/ci/checkout — Tinqs Studio CI
# Clones a repo from tinqs.com (self-hosted Gitea) using plain git.
# Supports depth control, branch/tag selection, and token auth for private repos.
# Composite action — runs directly on the host, no Node.js runtime needed.
# Author: Ozan + Claude Code — 2026-05-22
name: 'Tinqs Checkout'
description: 'Clone a Gitea repository (replaces actions/checkout)'