⚙️ Global fallback configurations for all repositories in this GitHub account.
Files placed in .github/ here apply to every repo that doesn't define its own version.
.github/
└── .github/
├── ISSUE_TEMPLATE/
│ ├── bug_report.md # Bug report template
│ └── feature_request.md # Feature request template
├── PULL_REQUEST_TEMPLATE.md # PR checklist (Next.js / TypeScript focused)
└── CONTRIBUTING.md # Setup, branching, commit style, code rules
| File | Purpose |
|---|---|
PULL_REQUEST_TEMPLATE.md |
Enforces a consistent PR format with a Next.js-specific checklist |
ISSUE_TEMPLATE/bug_report.md |
Prompts reporters for repro steps, environment, and logs |
ISSUE_TEMPLATE/feature_request.md |
Guides feature proposals with problem → solution → alternatives |
CONTRIBUTING.md |
Single source of truth for setup (pnpm, Turborepo), branching, and commit conventions |
Workflow files (.github/workflows/) cannot be centralized here — Actions must live in the repo where they run. Reusable workflows are the exception: define them here and call them from individual repos with a small caller file.