This repository contains organization-wide GitHub configuration files that are automatically applied to all repositories in the avenidaeng organization.
These files are inherited by all repositories that don't have their own versions:
| File | Purpose |
|---|---|
| CONTRIBUTING.md | Contribution guidelines |
| CODE_OF_CONDUCT.md | Community code of conduct |
| SECURITY.md | Security policy and vulnerability reporting |
| SUPPORT.md | How to get help |
| File | Purpose |
|---|---|
| PULL_REQUEST_TEMPLATE.md | Default PR template |
| ISSUE_TEMPLATE/bug_report.yml | Bug report form |
| ISSUE_TEMPLATE/feature_request.yml | Feature request form |
| ISSUE_TEMPLATE/config.yml | Issue template configuration |
| File | Purpose |
|---|---|
| profile/README.md | Organization landing page on GitHub |
Located in .github/workflows/:
| Workflow | Purpose |
|---|---|
reusable-nextjs-ci.yml |
CI for Next.js applications |
reusable-packages-ci.yml |
CI for TypeScript packages |
reusable-release.yml |
Release workflow with Changesets |
In your repository's workflow file:
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
uses: avenidaeng/.github/.github/workflows/reusable-nextjs-ci.yml@main
with:
node-version: "22"
secrets: inherit.github/
├── profile/
│ └── README.md # Organization landing page
├── ISSUE_TEMPLATE/
│ ├── bug_report.yml # Bug report form
│ ├── feature_request.yml # Feature request form
│ └── config.yml # Template configuration
├── .github/
│ └── workflows/
│ ├── reusable-nextjs-ci.yml
│ ├── reusable-packages-ci.yml
│ └── reusable-release.yml
├── CONTRIBUTING.md
├── CODE_OF_CONDUCT.md
├── SECURITY.md
├── SUPPORT.md
├── PULL_REQUEST_TEMPLATE.md
└── README.md # This file
Any repository can override these defaults by creating their own versions of these files in their .github/ folder.
- avenidaeng — Workspace configuration with Copilot instructions
- avenida-web — Main web application
- avenida-site — Marketing website
- avenida-packages — Shared TypeScript packages
- avenida-extension — Browser extension
- avenida-infra — Database infrastructure