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

feat: use GitHub repository rulesets instead of branch protection #1788

Merged
merged 2 commits into from
Dec 21, 2024
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
4 changes: 3 additions & 1 deletion cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
"infile",
"joshuakgoldberg",
"markdownlintignore",
"mtfoley"
"mtfoley",
"ruleset",
"rulesets"
]
}
2 changes: 1 addition & 1 deletion docs/Tooling.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ In code, assorted repository documentation files for GitHub are created:
On the GitHub repository, metadata will be populated:

- [Issue labels](https://docs.github.com/en/issues/using-labels-and-milestones-to-track-work/managing-labels) for issue areas, statuses, and types.
- [Repository settings](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features) such as [branch protections](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches) and [squash merging PRs](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges)
- [Repository settings](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features) such as [branch rulesets](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/creating-rulesets-for-a-repository) and [squash merging PRs](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges)

### Type Checking

Expand Down
47 changes: 0 additions & 47 deletions src/next/blocks/blockRepositoryBranchProtection.ts

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import { testBlock } from "create-testers";
import { describe, expect, test } from "vitest";

import { blockRepositoryBranchProtection } from "./blockRepositoryBranchProtection.js";
import { blockRepositoryBranchRuleset } from "./blockRepositoryBranchRuleset.js";
import { optionsBase } from "./options.fakes.js";

describe("blockRepositoryBranchProtection", () => {
describe("blockRepositoryBranchRuleset", () => {
test("without addons", () => {
const creation = testBlock(blockRepositoryBranchProtection, {
const creation = testBlock(blockRepositoryBranchRuleset, {
options: optionsBase,
});

expect(creation).toMatchInlineSnapshot(`
{
"requests": [
{
"id": "branch-protection",
"id": "branch-ruleset",
"send": [Function],
},
],
Expand All @@ -26,7 +26,7 @@ describe("blockRepositoryBranchProtection", () => {
// https://github.com/JoshuaKGoldberg/create/issues/65

test("with addons", () => {
const creation = testBlock(blockRepositoryBranchProtection, {
const creation = testBlock(blockRepositoryBranchRuleset, {
addons: {
requiredStatusChecks: ["build", "test"],
},
Expand All @@ -37,7 +37,7 @@ describe("blockRepositoryBranchProtection", () => {
{
"requests": [
{
"id": "branch-protection",
"id": "branch-ruleset",
"send": [Function],
},
],
Expand Down
60 changes: 60 additions & 0 deletions src/next/blocks/blockRepositoryBranchRuleset.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
import { z } from "zod";

import { base } from "../base.js";

export const blockRepositoryBranchRuleset = base.createBlock({
about: {
name: "Repository Branch Ruleset",
},
addons: {
requiredStatusChecks: z.array(z.string()).default([]),
},
produce({ addons, options }) {
return {
requests: [
{
id: "branch-ruleset",
async send({ octokit }) {
await octokit.request("POST /repos/{owner}/{repo}/rulesets", {
conditions: {
ref_name: {
exclude: [],
include: ["refs/heads/main"],
},
},
enforcement: "active",
name: "Branch protection for main",
owner: options.owner,
repo: options.repository,
rules: [
{ type: "deletion" },
{
parameters: {
// @ts-expect-error -- https://github.com/github/rest-api-description/issues/4405
allowed_merge_methods: ["squash"],
dismiss_stale_reviews_on_push: false,
require_code_owner_review: false,
require_last_push_approval: false,
required_approving_review_count: 0,
required_review_thread_resolution: false,
},
type: "pull_request",
},
{
parameters: {
required_status_checks: addons.requiredStatusChecks.map(
(context) => ({ context }),
),
strict_required_status_checks_policy: false,
},
type: "required_status_checks",
},
],
target: "branch",
});
},
},
],
};
},
});
4 changes: 2 additions & 2 deletions src/next/presetMinimal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { blockMITLicense } from "./blocks/blockMITLicense.js";
import { blockPackageJson } from "./blocks/blockPackageJson.js";
import { blockPrettier } from "./blocks/blockPrettier.js";
import { blockREADME } from "./blocks/blockREADME.js";
import { blockRepositoryBranchProtection } from "./blocks/blockRepositoryBranchProtection.js";
import { blockRepositoryBranchRuleset } from "./blocks/blockRepositoryBranchRuleset.js";
import { blockRepositoryLabels } from "./blocks/blockRepositoryLabels.js";
import { blockRepositorySettings } from "./blocks/blockRepositorySettings.js";
import { blockTemplatedBy } from "./blocks/blockTemplatedBy.js";
Expand Down Expand Up @@ -41,7 +41,7 @@ export const presetMinimal = base.createPreset({
blockPackageJson,
blockPrettier,
blockREADME,
blockRepositoryBranchProtection,
blockRepositoryBranchRuleset,
blockRepositoryLabels,
blockRepositorySettings,
blockTemplatedBy,
Expand Down
174 changes: 108 additions & 66 deletions src/steps/initializeBranchProtectionSettings.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,53 +37,74 @@ describe("migrateBranchProtectionSettings", () => {
expect(mockRequest.mock.calls).toMatchInlineSnapshot(`
[
[
"PUT /repos///branches/main/protection",
"POST /repos/{owner}/{repo}/rulesets",
{
"allow_deletions": false,
"allow_force_pushes": true,
"allow_fork_pushes": false,
"allow_fork_syncing": true,
"block_creations": false,
"branch": "main",
"enforce_admins": false,
"conditions": {
"ref_name": {
"exclude": [],
"include": [
"refs/heads/main",
],
},
},
"enforcement": "active",
"name": "Branch protection for main",
"owner": "",
"repo": "",
"required_conversation_resolution": true,
"required_linear_history": false,
"required_pull_request_reviews": null,
"required_status_checks": {
"checks": [
{
"context": "Build",
},
{
"context": "Compliance",
},
{
"context": "Lint",
},
{
"context": "Lint Knip",
},
{
"context": "Lint Markdown",
},
{
"context": "Lint Packages",
"rules": [
{
"type": "deletion",
},
{
"parameters": {
"allowed_merge_methods": [
"squash",
],
"dismiss_stale_reviews_on_push": false,
"require_code_owner_review": false,
"require_last_push_approval": false,
"required_approving_review_count": 0,
"required_review_thread_resolution": false,
},
{
"context": "Lint Spelling",
"type": "pull_request",
},
{
"parameters": {
"required_status_checks": [
{
"context": "Build",
},
{
"context": "Compliance",
},
{
"context": "Lint",
},
{
"context": "Lint Knip",
},
{
"context": "Lint Markdown",
},
{
"context": "Lint Packages",
},
{
"context": "Lint Spelling",
},
{
"context": "Prettier",
},
{
"context": "Test",
},
],
"strict_required_status_checks_policy": false,
},
{
"context": "Prettier",
},
{
"context": "Test",
},
],
"strict": false,
},
"restrictions": null,
"type": "required_status_checks",
},
],
"target": "branch",
},
],
]
Expand Down Expand Up @@ -129,35 +150,56 @@ describe("migrateBranchProtectionSettings", () => {
expect(mockRequest.mock.calls).toMatchInlineSnapshot(`
[
[
"PUT /repos///branches/main/protection",
"POST /repos/{owner}/{repo}/rulesets",
{
"allow_deletions": false,
"allow_force_pushes": true,
"allow_fork_pushes": false,
"allow_fork_syncing": true,
"block_creations": false,
"branch": "main",
"enforce_admins": false,
"conditions": {
"ref_name": {
"exclude": [],
"include": [
"refs/heads/main",
],
},
},
"enforcement": "active",
"name": "Branch protection for main",
"owner": "",
"repo": "",
"required_conversation_resolution": true,
"required_linear_history": false,
"required_pull_request_reviews": null,
"required_status_checks": {
"checks": [
{
"context": "Build",
},
{
"context": "Lint",
"rules": [
{
"type": "deletion",
},
{
"parameters": {
"allowed_merge_methods": [
"squash",
],
"dismiss_stale_reviews_on_push": false,
"require_code_owner_review": false,
"require_last_push_approval": false,
"required_approving_review_count": 0,
"required_review_thread_resolution": false,
},
{
"context": "Prettier",
"type": "pull_request",
},
{
"parameters": {
"required_status_checks": [
{
"context": "Build",
},
{
"context": "Lint",
},
{
"context": "Prettier",
},
],
"strict_required_status_checks_policy": false,
},
],
"strict": false,
},
"restrictions": null,
"type": "required_status_checks",
},
],
"target": "branch",
},
],
]
Expand Down
Loading
Loading