feat: establish org .github with reusable workflows and shared defaults - #1
Merged
Conversation
Centralize the shared surface for the unabandoned maintained-fork program so each fork can shrink to a thin caller plus its unique source. - reusable workflows: ci, commitlint, publish (OIDC-or-token, dev-tree hardened), release-please (changelog fold), release-cut, release-security, codeql, scorecard - org profile README, CLAUDE.md program guidance - community-health files: SECURITY, CONTRIBUTING, SUPPORT, CODEOWNERS, issue/PR templates, FUNDING - shared config: commitlint config + githook, canonical release-please changelog-sections template, renovate.json (forkProcessing enabled) - templates/ with copy-paste thin callers for new forks
This was referenced Aug 12, 2026
Merged
00o-sh
added a commit
to unabandoned/events
that referenced
this pull request
Aug 12, 2026
* ci: replace workflows with thin callers to org reusable workflows Each of the six workflows now calls the shared reusable workflow in unabandoned/.github instead of carrying a full copy. Adds CodeQL and Scorecard callers. Behaviour is unchanged (Node 20/22/24 matrix, OIDC-or-token publish, monthly release-cut, CVE fast-path). Callers reference @main and go green once unabandoned/.github#1 merges. * ci: retrigger checks against merged reusable workflows --------- Co-authored-by: Claude <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What & why
Centralizes the shared surface for the
unabandonedmaintained-fork program into this org.githubrepo, so each fork can shrink to a thin caller plus its unique source instead ofduplicating six workflows and several config files apiece.
Reusable workflows (
.github/workflows/reusable-*.yml)Extracted from the merged
eventstemplate, parameterized for per-fork variation:reusable-ci— Node matrix (node-versionsinput), optionalhas-buildstep.reusable-commitlint— Conventional-Commit PR linting.reusable-publish— self-bootstrapping OIDC-or-token publish, hardened againstthe dev tree: no
npm installunlessinstall-for-publish: true, and--ignore-scriptson every publish.
vars.OIDC_ENABLED/ secrets resolve against the caller repo.reusable-release-please— release-please + the "Dependencies & maintenance"changelog-fold post-step.
reusable-release-cut— monthly release merge (caller owns the cron).reusable-release-security— CVE fast-path release.reusable-codeqlandreusable-scorecard— shared security scanning.Org content
profile/README.md— org landing page (fork trigger, how to consume, how forks staycurrent).
CLAUDE.md— program guidance (prime directive, release model, secrets, fix-forward,attribution-footer + no-model-id rules, reusable-workflow layout).
SECURITY.md,CONTRIBUTING.md,SUPPORT.md,CODEOWNERS,bug-report + fork-request issue templates, PR template,
FUNDING.yml.Shared config
commitlint.config.js+.githooks/commit-msg(repo dogfoods its own reusable-commitlint).templates/release-please-config.json— canonicalchangelog-sectionsblock.templates/README.md— copy-paste thin callers for standing up a new fork.renovate.jsonwithforkProcessing: enabled.Type of change
feat— new shared infrastructureci— reusable workflowsFollow-ups (separate PRs)
The five forks convert to thin callers referencing these workflows at
@main; those callerswill go green once this PR merges to
main. The four heavy forks also migrate their testsuites onto built-in
node:testto collapse their dev trees.Generated by Claude Code