chore(repo): add CODEOWNERS, PR template, dependabot config#55
Merged
Conversation
- CODEOWNERS: every change touches admins by default (@onspeedhp, @chauanhtuan185, @metasal1); audit-sensitive paths (program/, assertions/, .github/workflows/, audits/) and the cherry-pick guardrails (fee-paths.txt + strip-fee.sh + check-no-fee.sh) re-state the same owners explicitly so renames don't silently drop ownership rules. - PULL_REQUEST_TEMPLATE.md: includes a 'Cherry-pick provenance' section so cherry-picks from lazorkit-protocol leave an audit trail and confirm scripts/check-no-fee.sh passed. - dependabot.yml: monthly cadence per ecosystem (cargo workspace, tests-sdk npm, github-actions). Groups version + security updates separately so a security PR doesn't get held up behind feature bumps.
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.
Summary
Three repo-hygiene additions, all opt-in / non-breaking.
Files
.github/CODEOWNERS— every change requires review from one of `@onspeedhp`, `@chauanhtuan185`, `@metasal1`. Audit-sensitive paths (`/program/`, `/assertions/`, `/.github/workflows/`, `/audits/`) and the cherry-pick guardrails (`scripts/fee-paths.txt`, `scripts/strip-fee.sh`, `scripts/check-no-fee.sh`) re-state the same owners so renames don't silently drop ownership rules..github/PULL_REQUEST_TEMPLATE.md— terse, audit-aware. Includes a "Cherry-pick provenance" section so PRs that mirror commits from `lazorkit-protocol` leave a clear trail and explicitly confirm `bash scripts/check-no-fee.sh` passed. Note: with squash merge, the PR description ends up as the commit message body on `main`, so this template effectively shapes `git log` going forward..github/dependabot.yml— monthly cadence:cargo(workspace)npm(/tests-sdk) — for `@lazorkit/sdk-legacy` and vitestgithub-actions(/)Each ecosystem grouped (1 PR for all version updates, 1 for security) with cap of 2-3 open PRs to keep noise bounded.
Test plan