-
Notifications
You must be signed in to change notification settings - Fork 69
docs(blog): add blog post on empowering non-code contributors #387
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
castrojo
wants to merge
1
commit into
main
Choose a base branch
from
blog/empowering-non-code-contributors
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+61
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,61 @@ | ||||||
| --- | ||||||
| title: 'Empowering non-code contributors' | ||||||
| description: Easy governance hacks to break down barriers. | ||||||
| date: 2026-07-30 | ||||||
| authors: [castrojo] | ||||||
| tags: [community] | ||||||
| --- | ||||||
|
|
||||||
| One of the nicest things about being in the CNCF is projects can generate their | ||||||
| own governance. Our layperson description for how CNCF governance works is | ||||||
| typically "Do what you say you do on the tin." | ||||||
|
|
||||||
| <!-- truncate --> | ||||||
|
|
||||||
| ### Have your Governance Match your Community | ||||||
|
|
||||||
| CNCF maintainers are Founders, CTO, CEO, Marketing, Tech Lead, VP Sales, HR, and | ||||||
| every title under the book. The CNCF constantly bombards you with project | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| opportunities: booths, slots for talks, etc. All of this can be overwhelming to | ||||||
| maintainers. | ||||||
|
|
||||||
| Feel free to expand your governance where it fits. Today's example is to expand | ||||||
| a typical boring CODEOWNERS file to empower folks. | ||||||
|
|
||||||
| First off is something I find myself reminding projects constantly: Your | ||||||
| governance is yours to adapt! You can add a few simple lines to your existing | ||||||
| documentation to bring in people: | ||||||
|
|
||||||
| :::tip[Check out how `bootc` does it] | ||||||
|
|
||||||
| Defined non-code contributors in | ||||||
| [MAINTAINERS.md](https://github.com/bootc-dev/bootc/blob/main/MAINTAINERS.md) | ||||||
|
|
||||||
| ::: | ||||||
|
|
||||||
| > Examples: CNCF Service Desk tickets, coordinating with CNCF Project and Events | ||||||
| > teams, and LFX Administration. No code or code review rights. | ||||||
|
|
||||||
| We're so used to the files in our repositories being only relegated to the code! | ||||||
|
|
||||||
| ### It's about trust | ||||||
|
|
||||||
| There are five global KubeCons and tons of [KCDs](https://www.cncf.io/kcds/) - | ||||||
| scaling this at the contributor level is difficult, which is why decoupling it | ||||||
| from the code is a nice hack. | ||||||
|
|
||||||
| This lets you pull in those community managers, project and product managers - | ||||||
| they bring in those crucial skills that we all need. And when they are declared | ||||||
| in your governance as Contributors it shows that the project is looking at its | ||||||
| contributor ladder as a whole. | ||||||
|
|
||||||
| Thanks to Kapil Thangavelu who showed me this little word hack at | ||||||
| [Cloud Custodian](https://cloudcustodian.io). | ||||||
|
|
||||||
| ### Git is our source of truth | ||||||
|
|
||||||
| The CNCF staff use the files that you put in git as THE source of truth. It | ||||||
| determines your event resources, everything. It never hurts to | ||||||
| [check the list](https://github.com/cncf/foundation/tree/main) for correctness, | ||||||
| it should reflect the state of your project. (Note: the GitHub webui struggles | ||||||
| with this file, you need to check it out of the repo or use raw mode). | ||||||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.