You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All workflows are driven by modular configuration in [`.github/env/`](.github/env/README.md) β no YAML editing required.
339
340
340
-
### ποΈ The Workflow Control Center
341
-
342
-
All GitHub Actions workflows in this repository are powered by configuration files: [**.env.base**](.github/.env.base) (default configuration) and optionally **.env.custom** (project-specific overrides) β your one-stop shop for tweaking CI/CD behavior without touching a single YAML file! π―
343
-
344
-
**Configuration Files:**
345
-
-**[.env.base](.github/.env.base)** β Default configuration that works for most Go projects
> **Pro tip:** Want to disable code coverage? Just add `ENABLE_CODE_COVERAGE=false` to your .env.custom to override the default in .env.base and push. No YAML archaeology required!
|[auto-merge-on-approval.yml](.github/workflows/auto-merge-on-approval.yml)| Automatically merges PRs after approval and all required checks, following strict rules. |
363
-
|[codeql-analysis.yml](.github/workflows/codeql-analysis.yml)| Analyzes code for security vulnerabilities using [GitHub CodeQL](https://codeql.github.com/). |
364
-
|[dependabot-auto-merge.yml](.github/workflows/dependabot-auto-merge.yml)| Automatically merges [Dependabot](https://github.com/dependabot) PRs that meet all requirements. |
365
-
|[fortress.yml](.github/workflows/fortress.yml)| Runs the GoFortress security and testing workflow, including linting, testing, releasing, and vulnerability checks. |
366
-
|[pull-request-management.yml](.github/workflows/pull-request-management.yml)| Labels PRs by branch prefix, assigns a default user if none is assigned, and welcomes new contributors with a comment. |
367
-
|[scorecard.yml](.github/workflows/scorecard.yml)| Runs [OpenSSF](https://openssf.org/) Scorecard to assess supply chain security. |
368
-
|[stale.yml](.github/workflows/stale-check.yml)| Warns about (and optionally closes) inactive issues and PRs on a schedule or manual trigger. |
369
-
|[sync-labels.yml](.github/workflows/sync-labels.yml)| Keeps GitHub labels in sync with the declarative manifest at [`.github/labels.yml`](./.github/labels.yml). |
341
+
**[View all workflows and the control center β](.github/docs/workflows.md)**
0 commit comments