From 94b7dedc26ca183b5e005c52065e05ddf2d15458 Mon Sep 17 00:00:00 2001 From: jinliyl <6469360+jinliyl@users.noreply.github.com> Date: Thu, 20 Aug 2026 16:03:55 +0800 Subject: [PATCH] Delete .github/README.md --- .github/README.md | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/README.md diff --git a/.github/README.md b/.github/README.md deleted file mode 100644 index dbff3b04..00000000 --- a/.github/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# Repository automation - -GitHub requires workflow files to live directly in `.github/workflows`, so filenames provide the organization: - -- `ci-*`: automatically triggered validation, with a manual rerun entry point where useful. -- `policy-*`: repository contribution policies. -- `deploy-*`: deployment workflows. -- `release-*`: package and integration publishing workflows. -- `security-*`: security scanning and scheduled security checks. -- `_build-*`: reusable implementation workflows called by the entry-point workflows above. - -Keep trigger selection, permissions, concurrency, and path filters in the entry-point workflow. Put repeated build and -verification jobs in a reusable workflow. A reusable workflow should use `workflow_call` and must not publish by itself. - -Release workflows validate versions and build artifacts before publishing. Publishing credentials and environment -protection remain repository settings and must not be committed here.