mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
Tested by manually passing in the commit message from
1028504dc8
and verifying that it grabbed the description from GH.
150 lines
3.5 KiB
JavaScript
150 lines
3.5 KiB
JavaScript
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* INSTALLATION:
|
|
* - `$ npm install octokit
|
|
* - Get a token from https://github.com/settings/tokens for use in the command below,
|
|
* set the token value as the GITHUB_AUTH_TOKEN environment variable
|
|
*
|
|
* USAGE:
|
|
* - $ GITHUB_AUTH_TOKEN="..." git filter-branch -f --msg-filter "node update-commit-message.js" 2364096862b72cf4d801ef2008c54252335a2df9..HEAD
|
|
*/
|
|
|
|
const { Octokit, App } = require("octokit");
|
|
const fs = require("fs");
|
|
|
|
const OWNER = "facebook";
|
|
const REPO = "react-forget";
|
|
const octokit = new Octokit({ auth: process.env.GITHUB_AUTH_TOKEN });
|
|
|
|
const fetchPullRequest = async (pullNumber) => {
|
|
const response = await octokit.request(
|
|
"GET /repos/{owner}/{repo}/pulls/{pull_number}",
|
|
{
|
|
owner: OWNER,
|
|
repo: REPO,
|
|
pull_number: pullNumber,
|
|
headers: {
|
|
"X-GitHub-Api-Version": "2022-11-28",
|
|
},
|
|
}
|
|
);
|
|
return { body: response.data.body, title: response.data.title };
|
|
};
|
|
|
|
function formatCommitMessage(str) {
|
|
let formattedStr = "";
|
|
let line = "";
|
|
|
|
const trim = str.replace(/(\r\n|\n|\r)/gm, " ").trim();
|
|
if (!trim) {
|
|
return "";
|
|
}
|
|
|
|
// Split the string into words
|
|
const words = trim.split(" ");
|
|
// Iterate over each word
|
|
for (let i = 0; i < words.length; i++) {
|
|
// If adding the next word doesn't exceed the line length limit, add it to the line
|
|
if ((line + words[i]).length <= 80) {
|
|
line += words[i] + " ";
|
|
} else {
|
|
// Otherwise, add the line to the formatted string and start a new line
|
|
formattedStr += line + "\n";
|
|
line = words[i] + " ";
|
|
}
|
|
}
|
|
// Add the last line to the formatted string
|
|
formattedStr += line;
|
|
return formattedStr;
|
|
}
|
|
|
|
function filterMsg(response) {
|
|
const { body, title } = response;
|
|
|
|
const msgs = body.split("\n\n").flatMap((x) => x.split("\r\n"));
|
|
|
|
const newMessage = [];
|
|
|
|
// Add title
|
|
msgs.unshift(title);
|
|
|
|
for (const msg of msgs) {
|
|
// remove "Stack from [ghstack] blurb"
|
|
if (msg.startsWith("Stack from ")) {
|
|
continue;
|
|
}
|
|
|
|
// remove "* #1234"
|
|
if (msg.startsWith("* #")) {
|
|
continue;
|
|
}
|
|
|
|
// remove "* __->__ #1234"
|
|
if (msg.startsWith("* __")) {
|
|
continue;
|
|
}
|
|
|
|
const formattedStr = formatCommitMessage(msg);
|
|
if (!formattedStr) {
|
|
continue;
|
|
}
|
|
newMessage.push(formattedStr);
|
|
}
|
|
|
|
const updatedMsg = newMessage.join("\n\n");
|
|
return updatedMsg;
|
|
}
|
|
|
|
function parsePullRequestNumber(text) {
|
|
if (!text) {
|
|
return null;
|
|
}
|
|
const ghstackUrlRegex =
|
|
/https:\/\/github\.com\/[\w.-]+\/[\w.-]+\/pull\/(\d+)/;
|
|
const ghstackMatch = text.match(ghstackUrlRegex);
|
|
if (ghstackMatch) {
|
|
return ghstackMatch[1];
|
|
}
|
|
const firstLine = text
|
|
.split("\n")
|
|
.filter((text) => text.trim().length > 0)[0];
|
|
if (firstLine == null) {
|
|
return null;
|
|
}
|
|
const prNumberRegex = /\(#(\d{3,})\)\s*$/;
|
|
const prNumberMatch = firstLine.match(prNumberRegex);
|
|
if (prNumberMatch) {
|
|
return prNumberMatch[1];
|
|
}
|
|
return null;
|
|
}
|
|
|
|
async function main() {
|
|
const data = fs.readFileSync(0, "utf-8");
|
|
const pr = parsePullRequestNumber(data);
|
|
|
|
if (pr) {
|
|
try {
|
|
const response = await fetchPullRequest(pr);
|
|
if (!response.body) {
|
|
console.log(data);
|
|
return;
|
|
}
|
|
const newMessage = filterMsg(response);
|
|
console.log(newMessage);
|
|
return;
|
|
} catch (e) {
|
|
console.log(data);
|
|
return;
|
|
}
|
|
}
|
|
|
|
console.log(data);
|
|
}
|
|
|
|
main();
|