ReMe/.github
dependabot[bot] 57c3f04b4b
chore(deps): bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-08-20 07:59:29 +00:00
..
ISSUE_TEMPLATE ci: organize GitHub automation (#466) 2026-08-20 15:56:30 +08:00
workflows chore(deps): bump actions/checkout from 6 to 7 2026-08-20 07:59:29 +00:00
dependabot.yml ci: organize GitHub automation (#466) 2026-08-20 15:56:30 +08:00
PULL_REQUEST_TEMPLATE.md ci: organize GitHub automation (#466) 2026-08-20 15:56:30 +08:00
README.md ci: organize GitHub automation (#466) 2026-08-20 15:56:30 +08:00

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.