This repository is the central configuration hub for all repositories in the NeuroLift Technologies GitHub organization. GitHub treats this repository specially, using its contents as organization-wide defaults.
| File | Description |
|---|---|
profile/README.md |
Public-facing organization profile displayed on the NeuroLift Technologies GitHub page |
These files apply as defaults to all repositories in the organization that don't define their own version.
| File | Description |
|---|---|
CONTRIBUTING.md |
Guidelines for contributing to our projects |
CODE_OF_CONDUCT.md |
Community standards and enforcement |
SECURITY.md |
How to report security vulnerabilities |
SUPPORT.md |
Where to get help |
Default templates used across all repositories in the organization.
| File | Description |
|---|---|
ISSUE_TEMPLATE/bug_report.md |
Template for reporting bugs |
ISSUE_TEMPLATE/feature_request.md |
Template for suggesting features |
ISSUE_TEMPLATE/config.yml |
Issue template chooser configuration |
PULL_REQUEST_TEMPLATE.md |
Default pull request template |
| File | Description |
|---|---|
.github/copilot-instructions.md |
Custom coding instructions for GitHub Copilot across all org repos |
Workflows stored here can be called from any repository in the organization using uses: NeuroLift-Technologies/.github/.github/workflows/<workflow>.yml@main.
| File | Description |
|---|---|
.github/workflows/reusable-ci.yml |
Reusable CI workflow (lint + test for Python and Node.js projects) |
In any repository within this organization, create .github/workflows/ci.yml:
name: CI
on: [push, pull_request]
jobs:
ci:
uses: NeuroLift-Technologies/.github/.github/workflows/reusable-ci.yml@main
with:
node-version: '20'
python-version: '3.12'