Skip to content
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
13 changes: 1 addition & 12 deletions .oxfmtrc.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"ignorePatterns": ["CHANGELOG.md"],
"sortImports": {
"groups": [
"builtin",
"external",
["internal", "subpath"],
"parent",
"sibling",
"index",
"side_effect",
"unknown"
],
"newlinesBetween": true
"newlinesBetween": false
}
}
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,15 @@
## 1.1.1

- [patch] fa74183:

- Link messages out to information on changesets

- [patch] a1d1b56:

- Display commit sha instead of commit message in bot comment

## 1.1.0

- [patch] f7a6395:

- Handle case where committer field in webhook event is null

- [minor] 9bd107d:

- Added new bot to detect changesets on PRs
1 change: 0 additions & 1 deletion api/webhook.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { createNodeMiddleware, createProbot } from "probot";

import app from "../index.ts";

// Requires:
Expand Down
1 change: 0 additions & 1 deletion get-changed-packages.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import nodePath from "path";

import assembleReleasePlan from "@changesets/assemble-release-plan";
import { parse as parseConfig } from "@changesets/config";
import parseChangeset from "@changesets/parse";
Expand Down
1 change: 0 additions & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { captureException } from "@sentry/node";
import { humanId } from "human-id";
import markdownTable from "markdown-table";
import type { Probot, Context } from "probot";

import { getChangedPackages } from "./get-changed-packages.ts";

const getReleasePlanMessage = (releasePlan: ReleasePlan | null) => {
Expand Down
3 changes: 0 additions & 3 deletions test/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
import assert from "node:assert/strict";
import { generateKeyPairSync } from "node:crypto";

import { HttpResponse, http } from "msw";
import { setupServer } from "msw/node";
import { Probot, ProbotOctokit } from "probot";
import { aroundEach, beforeAll, describe, it } from "vitest";

import type { PRContext } from "../index.ts";
import changesetBot from "../index.ts";

import pullRequestOpen from "./fixtures/pull_request.opened.json";
import pullRequestSynchronize from "./fixtures/pull_request.synchronize.json";
import releasePullRequestOpen from "./fixtures/release_pull_request.opened.json";
Expand Down