Skip to content

Commit 3b47270

Browse files
committed
Merge branch 'main' into blog-post
2 parents 4bb9f68 + f958879 commit 3b47270

File tree

32 files changed

+900
-1962
lines changed

32 files changed

+900
-1962
lines changed

.github/CODEOWNERS

+5-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
# These owners will be the default owners for everything in
2-
# the repo. Unless a later match takes precedence, they will
3-
# be requested for review when someone opens a pull request.
4-
* @creativecommons/engineering @creativecommons/ct-cc-open-source-core-committers @creativecommons/ct-cc-open-source-collaborators
5-
6-
# These users own any files in the specified directory and
7-
# any of its subdirectories.
8-
/webpack/ @creativecommons/frontend-engineers
9-
* @creativecommons/ct-cc-open-source-maintainers
1+
# https://help.github.com/en/articles/about-code-owners
2+
# If you want to match two or more code owners with the same pattern, all the
3+
# code owners must be on the same line. If the code owners are not on the same
4+
# line, the pattern matches only the last mentioned code owner.
5+
* @creativecommons/technology @creativecommons/ct-cc-open-source-core-committers @creativecommons/ct-cc-open-source-maintainers

.lektorproject

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ target = ghpages+https://creativecommons/creativecommons.github.io
1010
[packages]
1111
lektor-atom = 0.4.0
1212
lektor-disqus-comments = 0.4.1
13-
lektor-google-analytics = 0.1.3
1413
lektor-markdown-excerpt = 0.1
1514
lektor-markdown-header-anchors = 0.3.1
1615
lektor-markdown-highlighter = 0.3.2

configs/google-analytics.ini

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
username: anthony_ho
2+
---
3+
name: Anthony Ho
4+
---
5+
md5_hashed_email:
6+
---
7+
about:
8+
As of 2023, Anthony Ho is a senior studying information analysis and economics
9+
at the University of Michigan. Upon graduation, he is returning to Hong Kong
10+
and pursuing a career in consulting.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
username: claire_wan
2+
---
3+
name: Claire Wan
4+
---
5+
md5_hashed_email:
6+
---
7+
about:
8+
As of 2023, Claire Wan is a senior studying Information and Cognitive Science
9+
with a minor in Computer Science at the University of Michigan. She is working
10+
as a software engineer in Chicago after graduation.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
username: grace_coleman
2+
---
3+
name: Grace Coleman
4+
---
5+
md5_hashed_email:
6+
---
7+
about:
8+
As of 2023, Grace Coleman is a senior studying information analysis at the
9+
University of Michigan. She is staying at Michigan to pursue a Masters in
10+
Business Analytics at the Ross School of Business upon graduation.
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
username: shafiya
2+
---
3+
name: Shafiya Heena
4+
---
5+
md5_hashed_email: f49628fb50324d628379b469c7f008c6
6+
---
7+
about:
8+
Shafiya is the Systems Engineer at [Creative Commons][creativecommons]. She is
9+
`@shafiya` on [CC Slack](/community/) and [Shafiya-Heena][github] on GitHub.
10+
11+
[creativecommons]: https://creativecommons.org/author/shafiyacreativecommons-org/
12+
[github]: https://github.com/Shafiya-Heena
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
username: tyler_phillips
2+
---
3+
name: Tyler Phillips
4+
---
5+
md5_hashed_email:
6+
---
7+
about:
8+
As of 2023, Tyler Phillips is a graduating senior at the University of Michigan
9+
School of Information (UMSI), receiving his Bachelor of Science in Information
10+
Analysis accompanied with a minor in Art & Design - Sonic & Visual Arts
11+
Integration. Tyler will continue his graduate studies in the fall, with
12+
reasonable expectations of a duel-degree, heading back to UMSI to obtain a
13+
Masters of Science in Information - Big Data Analytics as well as a Masters in
14+
Business Analytics, at the UM Ross School of Business.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
1+
title: Considering Community Contributions at Creative Commons
2+
---
3+
categories:
4+
open-source
5+
collaboration
6+
community
7+
---
8+
author: sara
9+
---
10+
pub_date: 2023-03-24
11+
---
12+
body:
13+
14+
Different open source communities work differently and so everyone may arrive
15+
at Creative Commons' projects with their own set of individual expectations.
16+
Someone might expect to directly submit a Pull Request to a project without an
17+
Issue. Or they may submit an Issue and then immediately an associated Pull
18+
Request. At Creative Commons we have a process we hope to follow so there's a
19+
chance for consideration, community participation, and discussion along the
20+
way. Where we make collaborative, well documented, and informed work more
21+
possible!
22+
23+
Things usually begin with an idea for new functionality, new/revised
24+
documentation, or an encountered error of sorts. That idea or error is then
25+
captured as a GitHub Issue used to describe its details. Think of this as the
26+
Abstract that comes before the Implementation.
27+
28+
It's important to first look through all the existing Issues, including ones
29+
that have been Closed to determine if someone else has already made an
30+
overlapping Issue. If they have, it's best to add any new information you've
31+
discovered or thought of as a comment (or series of comments) to that Issue,
32+
rather than create a new one.
33+
34+
Errors (often referred to as Bugs) should be verified, and reproducible if
35+
possible. Things like screenshots, steps to reproduce, a video, and environment
36+
details are all incredibly helpful for others when they want to review the
37+
error. All that information is gathered and placed in a succinct, but detailed
38+
Issue on the associated repository. It's worth noting that the documented Issue
39+
alone is a valued contribution. It will provide guidance and documentation for
40+
whomever works on resolving or implementing it, so it's just as important as
41+
the eventual code that will be written. That means it should be done well,
42+
because the better an Issue describes an error and provides a clear way to
43+
reproduce it the easier it will be for anyone to address it.
44+
45+
Functionality and Feature proposals are often a little more involved. Errors
46+
are some aberration in the existing expectations or functionality of the
47+
codebase's state, but new/changed functionality or features introduce larger
48+
planning considerations. They have to take into account the current state of
49+
things and the proposed future state they're introducing as an Issue. This is
50+
an exercise in communication and description first and foremost, and that means
51+
that having a detailed writeup, wireframes, mockups, and evidence to support
52+
the proposal is vital to its success. Where Errors might be able to consider a
53+
more isolated set of consequences to fixing something, introducing new
54+
features/functionality may have unintended side effects, it may require
55+
multiple parts of the codebase to be changed or altered. All of these larger
56+
picture considerations should be taken into account and addressed within the
57+
Issue. One should expect that a Feature Issue may on average take longer to
58+
introduce, and longer to adequately document in a clear and concise way to get
59+
the point across to the rest of the community.
60+
61+
Documentation can always use improvements whether within code comments, a
62+
project's README.md, or associated documentation. These would largely be
63+
considered a "Feature Issue" technically but it's worth pointing them out
64+
separately because they're as important, if not more so, than fixing errors or
65+
adding codebase level functionality. Good documentation makes the project
66+
strong and the community more informed. Improvements here should document where
67+
there's a gap or where revisions are needed, and how they should be corrected.
68+
69+
Whether an Error or Feature/functionality Issue, once it's been submitted, in
70+
accordance with the [Contribution
71+
Guidelines](https://opensource.creativecommons.org/contributing-code/), it will
72+
move to a status of "awaiting triage". This means that it is waiting to be
73+
reviewed by one of the core codebase contributors. While it's in this state no
74+
implementation work should be done (no PRs, no code work to add or correct the
75+
behavior). An Issue submitted is largely the start of a process, and a
76+
conversation. Core contributors will review the Issue and see if it adequately
77+
describes its appropriate details, and if its objectives fit within the larger
78+
pattern and goals of the codebase itself. It's entirely possible that a well
79+
thought through Feature Issue that adds some new menu functionality is in
80+
isolation a good idea, but that it doesn't fit within the goals of the project
81+
in question and won't move forward. And that's OK, even if an Issue doesn't
82+
move forward it can now stand as documentation for the community on what won't
83+
be worked on at this time, which is just as important as what will. It's a
84+
contribution whether it moves forward or not, so long as it describes itself
85+
well enough.
86+
87+
If this happens, the Issue will be moved to a status of "discarded", and will
88+
be closed with a comment explaining why. The other reason an Issue might be
89+
moved to "discarded" is that it duplicates the work in another Issue, which is
90+
why it's important to first check all the existing Issues prior to submitting a
91+
new one.
92+
93+
Sometimes an Issue might describe something much broader than can be easily
94+
contained within itself and may be converted to a status of "discussion". This
95+
means that the Issue should spark a larger conversation within the community to
96+
consider all the angles of abstract, and possibly split the idea up into more
97+
manageable pieces across multiple Issues. Other outcomes might be a discussion
98+
that realizes that while the idea is sound, it's not implementable at this time
99+
and won't move forward.
100+
101+
Some Issues are solid ideas, but they are not something that can move forward
102+
until work on other Issues is completed first. As such they tend to move to a
103+
status of "blocked". They'll sit in that state until they're unblocked and the
104+
work can happen.
105+
106+
If an Issue seems like it doesn't have enough information to determine what to
107+
do with it, then it will likely move to a status of "ticket work required" and
108+
a comment will usually be left describing what needs to be worked on.
109+
110+
Remember, an Issue is a form of documentation, and in a way it's a
111+
conversation, and that means that until it moves forward it's very much a work
112+
in progress.
113+
114+
If an Issue passes through this period as implementable, then it'll move to a
115+
status of "ready for work". This is the point at which it can be implemented,
116+
and a contributor can submit a Pull Request addressing it. (See the [Repository
117+
Labels Status section](https://opensource.creativecommons.org/co
118+
ntributing-code/repo-labels/#status) for more information)
119+
120+
During this process it is worth noting that there will be multiple types of
121+
contribution. For example:
122+
123+
* The Issue itself is a contribution
124+
* Comments on the Issue from the community refining it are each contributions
125+
* Someone's comment on the Issue helping another person sort out why the Error
126+
is occurring is a contribution.
127+
* Someone finding another related Issue and linking it as relevant to that
128+
Issue is a contribution.
129+
130+
All of these contributions occurred before a Pull Request was ever initiated.
131+
Once an Issue enters a status of "ready for work" someone who has indicated
132+
interest on that Issue will be assigned to it and can then fork the repository,
133+
make a branch to work within, and once settled submit a Pull Request. That
134+
process alone may involve several contributions as well, such as:
135+
136+
* The code work encounters a problem, someone asks for assistance within their
137+
draft PR, and several members offer help as comments.
138+
* Someone reviews the final PR and leaves a detailed review on what might need
139+
addressing
140+
* A discussion breaks out on the best way to resolve an encountered problem
141+
with the PR, each of these comments is a contribution
142+
* And, of course, the PR itself is a contribution.
143+
144+
If the PR passes Review then it'll be marked as Approved and merged into the
145+
codebase, that will trigger the associated Issue to close as complete and now
146+
the Error Fix or Functionality in question will be fully implemented into the
147+
project.
148+
149+
To get here it took multiple contributions, from different community members,
150+
that's the power of open source!

0 commit comments

Comments
 (0)