@mui/internal-code-infra 0.0.4-canary.86 → 0.0.4-canary.87

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,6 +13,8 @@ export interface FetchedCommitDetails {
13
13
  } | null;
14
14
  mergedAt: string | null;
15
15
  createdAt: string | null;
16
+ prTitle: string;
17
+ prBody: string;
16
18
  }
17
19
  /**
18
20
  * Parsed label information from a commit.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/internal-code-infra",
3
- "version": "0.0.4-canary.86",
3
+ "version": "0.0.4-canary.87",
4
4
  "author": "MUI Team",
5
5
  "description": "Infra scripts and configs to be used across MUI repos.",
6
6
  "license": "MIT",
@@ -188,7 +188,7 @@
188
188
  "publishConfig": {
189
189
  "access": "public"
190
190
  },
191
- "gitSha": "b2c260c8dde8f72aaac6d99328c4f5b19267878b",
191
+ "gitSha": "108ba9b49dc9b9abc4c72478da3b3045003b84af",
192
192
  "scripts": {
193
193
  "build": "tsgo -p tsconfig.build.json",
194
194
  "typescript": "tsgo -noEmit",
@@ -129,6 +129,8 @@ async function fetchCommitsRest({ octokit, repo, lastRelease, release, org = 'mu
129
129
  association: getAuthorAssociation(pr.data.author_association),
130
130
  }
131
131
  : null,
132
+ prTitle: pr.data.title,
133
+ prBody: pr.data.body,
132
134
  });
133
135
  });
134
136
 
@@ -13,6 +13,8 @@ export interface FetchedCommitDetails {
13
13
  } | null;
14
14
  mergedAt: string | null;
15
15
  createdAt: string | null;
16
+ prTitle: string;
17
+ prBody: string;
16
18
  }
17
19
 
18
20
  /**