This folder contains GitHub-specific configuration files for workflows, checks, and repository automation.
.github/ ├── workflows/ │ ├── pr-checks.yml │ └── link-check.yml └── markdown-link-check-config.json
Workflow files live in:
.github/workflows/
These files run automated checks on pull requests or other GitHub events.
Some workflows need extra config files.
Example:
link-check.yml requires:
.github/markdown-link-check-config.json
If you copy the workflow without its config file, it may fail or behave differently.
When copying a workflow from this toolkit, check whether it has a required config file before using it.