Skip to content
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

fix: preserve existing owner contributions during transition #2065

Merged
merged 1 commit into from
Mar 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
332 changes: 220 additions & 112 deletions src/blocks/blockAllContributors.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,132 +90,240 @@ describe("blockAllContributors", () => {
`);
});

it("includes contributors when provided", () => {
it("runs add including existing owner contributions when they exist", () => {
const creation = testBlock(blockAllContributors, {
options: {
...optionsBase,
contributors: [
{
avatar_url: "https://avatars.githubusercontent.com/u/3335181?v=4",
contributions: [
"bug",
"code",
"design",
"doc",
"ideas",
"infra",
"maintenance",
"review",
"test",
"tool",
],
contributions: ["bug", "code", "design", "doc", "test", "tool"],
login: "JoshuaKGoldberg",
name: "Josh Goldberg",
profile: "http://www.joshuakgoldberg.com",
},
],
owner: "JoshuaKGoldberg",
},
});

expect(creation).toMatchInlineSnapshot(`
{
"addons": [
{
"addons": {
"ignores": [
"/.all-contributorsrc",
],
},
"block": [Function],
},
{
"addons": {
"badges": [
{
"alt": "👪 All Contributors: 1",
"comments": {
"after": "
<!-- ALL-CONTRIBUTORS-BADGE:END -->
<!-- prettier-ignore-end -->",
"before": "<!-- prettier-ignore-start -->
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
",
},
"href": "#contributors",
"src": "https://img.shields.io/badge/%F0%9F%91%AA_all_contributors-1-21bb42.svg",
},
],
"sections": [
"## Contributors

<!-- spellchecker: disable -->
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://www.joshuakgoldberg.com"><img src="https://avatars.githubusercontent.com/u/3335181?v=4?s=100" width="100px;" alt="Josh Goldberg"/><br /><sub><b>Josh Goldberg</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=author%3AJoshuaKGoldberg" title="Bug reports">🐛</a> <a href="https://github.com/JoshuaKGoldberg/create-typescript-app/commits?author=JoshuaKGoldberg" title="Code">💻</a> <a href="#design-JoshuaKGoldberg" title="Design">🎨</a> <a href="https://github.com/JoshuaKGoldberg/create-typescript-app/commits?author=JoshuaKGoldberg" title="Documentation">📖</a> <a href="#ideas-JoshuaKGoldberg" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-JoshuaKGoldberg" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#maintenance-JoshuaKGoldberg" title="Maintenance">🚧</a> <a href="https://github.com/JoshuaKGoldberg/create-typescript-app/pulls?q=is%3Apr+reviewed-by%3AJoshuaKGoldberg" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/JoshuaKGoldberg/create-typescript-app/commits?author=JoshuaKGoldberg" title="Tests">⚠️</a> <a href="#tool-JoshuaKGoldberg" title="Tools">🔧</a></td>
</tr>
</tbody>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->
<!-- spellchecker: enable -->",
],
},
"block": [Function],
},
{
"addons": {
"secrets": [
{
"description": "a GitHub PAT with repo and workflow permissions",
"name": "ACCESS_TOKEN",
},
],
},
"block": [Function],
},
],
"files": {
".all-contributorsrc": "{"badgeTemplate":"\\t<a href=\\"#contributors\\" target=\\"_blank\\"><img alt=\\"👪 All Contributors: <%= contributors.length %>\\" src=\\"https://img.shields.io/badge/%F0%9F%91%AA_all_contributors-<%= contributors.length %>-21bb42.svg\\" /></a>","contributors":[{"avatar_url":"https://avatars.githubusercontent.com/u/3335181?v=4","contributions":["bug","code","design","doc","ideas","infra","maintenance","review","test","tool"],"login":"JoshuaKGoldberg","name":"Josh Goldberg","profile":"http://www.joshuakgoldberg.com"}],"contributorsSortAlphabetically":true,"projectName":"test-repository","projectOwner":"test-owner"}",
".github": {
"workflows": {
"contributors.yml": "jobs:
contributors:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/prepare
- env:
GITHUB_TOKEN: \${{ secrets.ACCESS_TOKEN }}
uses: JoshuaKGoldberg/[email protected]

name: Contributors

on:
push:
branches:
- main
",
},
},
},
"scripts": [
{
"commands": [
"pnpx all-contributors-cli add test-owner code,content,doc,ideas,infra,maintenance,projectManagement,tool",
],
"phase": 3,
},
],
}
`);
{
"addons": [
{
"addons": {
"ignores": [
"/.all-contributorsrc",
],
},
"block": [Function],
},
{
"addons": {
"badges": [
{
"alt": "👪 All Contributors: 1",
"comments": {
"after": "
<!-- ALL-CONTRIBUTORS-BADGE:END -->
<!-- prettier-ignore-end -->",
"before": "<!-- prettier-ignore-start -->
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
",
},
"href": "#contributors",
"src": "https://img.shields.io/badge/%F0%9F%91%AA_all_contributors-1-21bb42.svg",
},
],
"sections": [
"## Contributors

<!-- spellchecker: disable -->
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://www.joshuakgoldberg.com"><img src="https://avatars.githubusercontent.com/u/3335181?v=4?s=100" width="100px;" alt="Josh Goldberg"/><br /><sub><b>Josh Goldberg</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=author%3AJoshuaKGoldberg" title="Bug reports">🐛</a> <a href="https://github.com/JoshuaKGoldberg/create-typescript-app/commits?author=JoshuaKGoldberg" title="Code">💻</a> <a href="#design-JoshuaKGoldberg" title="Design">🎨</a> <a href="https://github.com/JoshuaKGoldberg/create-typescript-app/commits?author=JoshuaKGoldberg" title="Documentation">📖</a> <a href="https://github.com/JoshuaKGoldberg/create-typescript-app/commits?author=JoshuaKGoldberg" title="Tests">⚠️</a> <a href="#tool-JoshuaKGoldberg" title="Tools">🔧</a></td>
</tr>
</tbody>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->
<!-- spellchecker: enable -->",
],
},
"block": [Function],
},
{
"addons": {
"secrets": [
{
"description": "a GitHub PAT with repo and workflow permissions",
"name": "ACCESS_TOKEN",
},
],
},
"block": [Function],
},
],
"files": {
".all-contributorsrc": "{"badgeTemplate":"\\t<a href=\\"#contributors\\" target=\\"_blank\\"><img alt=\\"👪 All Contributors: <%= contributors.length %>\\" src=\\"https://img.shields.io/badge/%F0%9F%91%AA_all_contributors-<%= contributors.length %>-21bb42.svg\\" /></a>","contributors":[{"avatar_url":"https://avatars.githubusercontent.com/u/3335181?v=4","contributions":["bug","code","design","doc","test","tool"],"login":"JoshuaKGoldberg","name":"Josh Goldberg","profile":"http://www.joshuakgoldberg.com"}],"contributorsSortAlphabetically":true,"projectName":"test-repository","projectOwner":"JoshuaKGoldberg"}",
".github": {
"workflows": {
"contributors.yml": "jobs:
contributors:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/prepare
- env:
GITHUB_TOKEN: \${{ secrets.ACCESS_TOKEN }}
uses: JoshuaKGoldberg/[email protected]

name: Contributors

on:
push:
branches:
- main
",
},
},
},
"scripts": [
{
"commands": [
"pnpx all-contributors-cli add JoshuaKGoldberg bug,code,design,doc,test,tool,content,ideas,infra,maintenance,projectManagement",
],
"phase": 3,
},
],
}
`);
});

it("adds full owner contributions when no existing contributor is the owner", () => {
const creation = testBlock(blockAllContributors, {
options: {
...optionsBase,
contributors: [
{
avatar_url: "https://avatars.githubusercontent.com/u/3335181?v=4",
contributions: ["bug", "code", "design", "doc", "test", "tool"],
login: "other",
name: "Other",
profile: "http://www.example.com",
},
],
},
});

expect(creation).toMatchInlineSnapshot(`
{
"addons": [
{
"addons": {
"ignores": [
"/.all-contributorsrc",
],
},
"block": [Function],
},
{
"addons": {
"badges": [
{
"alt": "👪 All Contributors: 1",
"comments": {
"after": "
<!-- ALL-CONTRIBUTORS-BADGE:END -->
<!-- prettier-ignore-end -->",
"before": "<!-- prettier-ignore-start -->
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
",
},
"href": "#contributors",
"src": "https://img.shields.io/badge/%F0%9F%91%AA_all_contributors-1-21bb42.svg",
},
],
"sections": [
"## Contributors

<!-- spellchecker: disable -->
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="http://www.example.com"><img src="https://avatars.githubusercontent.com/u/3335181?v=4?s=100" width="100px;" alt="Other"/><br /><sub><b>Other</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=author%3Aother" title="Bug reports">🐛</a> <a href="https://github.com/JoshuaKGoldberg/create-typescript-app/commits?author=other" title="Code">💻</a> <a href="#design-other" title="Design">🎨</a> <a href="https://github.com/JoshuaKGoldberg/create-typescript-app/commits?author=other" title="Documentation">📖</a> <a href="https://github.com/JoshuaKGoldberg/create-typescript-app/commits?author=other" title="Tests">⚠️</a> <a href="#tool-other" title="Tools">🔧</a></td>
</tr>
</tbody>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->
<!-- spellchecker: enable -->",
],
},
"block": [Function],
},
{
"addons": {
"secrets": [
{
"description": "a GitHub PAT with repo and workflow permissions",
"name": "ACCESS_TOKEN",
},
],
},
"block": [Function],
},
],
"files": {
".all-contributorsrc": "{"badgeTemplate":"\\t<a href=\\"#contributors\\" target=\\"_blank\\"><img alt=\\"👪 All Contributors: <%= contributors.length %>\\" src=\\"https://img.shields.io/badge/%F0%9F%91%AA_all_contributors-<%= contributors.length %>-21bb42.svg\\" /></a>","contributors":[{"avatar_url":"https://avatars.githubusercontent.com/u/3335181?v=4","contributions":["bug","code","design","doc","test","tool"],"login":"other","name":"Other","profile":"http://www.example.com"}],"contributorsSortAlphabetically":true,"projectName":"test-repository","projectOwner":"test-owner"}",
".github": {
"workflows": {
"contributors.yml": "jobs:
contributors:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/prepare
- env:
GITHUB_TOKEN: \${{ secrets.ACCESS_TOKEN }}
uses: JoshuaKGoldberg/[email protected]

name: Contributors

on:
push:
branches:
- main
",
},
},
},
"scripts": [
{
"commands": [
"pnpx all-contributors-cli add test-owner code,content,doc,ideas,infra,maintenance,projectManagement,tool",
],
"phase": 3,
},
],
}
`);
});
});
16 changes: 15 additions & 1 deletion src/blocks/blockAllContributors.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import _ from "lodash";

import { base } from "../base.js";
import { ownerContributions } from "../data/contributions.js";
import { startingOwnerContributions } from "../data/contributions.js";
import { Contributor } from "../schemas.js";
import { resolveUses } from "./actions/resolveUses.js";
import { blockPrettier } from "./blockPrettier.js";
Expand All @@ -16,6 +16,20 @@ export const blockAllContributors = base.createBlock({
},
produce({ options }) {
const contributions = options.contributors?.length;
const ownerContributions = Array.from(
new Set(
[
options.contributors?.find(
(contributor) =>
contributor.login.toLowerCase() === options.owner.toLowerCase(),
)?.contributions,
startingOwnerContributions,
]
.filter(Boolean)
.flat(),
),
);

return {
addons: [
blockPrettier({
Expand Down
2 changes: 1 addition & 1 deletion src/data/contributions.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const ownerContributions = [
export const startingOwnerContributions = [
"code",
"content",
"doc",
Expand Down
Loading