This repository holds org-level default configuration for the mq-rest-admin-project GitHub organization.
| Path | Purpose |
|---|---|
profile/README.md |
Org profile page — renders on the mq-rest-admin-project landing page |
ISSUE_TEMPLATE/ |
Default issue templates inherited by all repos |
pull_request_template.md |
Default PR template inherited by all repos |
CONTRIBUTING.md |
Contributor guidelines |
CODE_OF_CONDUCT.md |
Contributor Covenant v2.1 |
SECURITY.md |
Vulnerability reporting policy |
SUPPORT.md |
Where to get help |
.github/workflows/ci.yml |
CI for this repo |
GitHub's .github profile repository provides org-level defaults.
Any repository in the org that does not have its own copy of a file
inherits the org default.
Standalone files (CONTRIBUTING.md, SECURITY.md, CODE_OF_CONDUCT.md, SUPPORT.md, pull_request_template.md) inherit independently on a per-file basis. A repo can override one without affecting the others.
Template directories (ISSUE_TEMPLATE/) inherit on a per-directory
basis — all or nothing. If a repo has any file in its own
.github/ISSUE_TEMPLATE/ directory, it gets none of the org defaults
for that directory. To customize, the repo must provide the complete
set of templates.
Files that do not inherit: LICENSE (each repo must have its own),
.claude/, CLAUDE.md, vergil.toml, and CI workflows.
This repo's own CI workflow lives at .github/workflows/ci.yml. The
outer .github is the repo name; the inner .github/ is the standard
location for a repo's own workflows. This nesting is how GitHub
handles the .github repo having its own CI — it is correct, not a
mistake.