Skip to content
Open
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
1 change: 1 addition & 0 deletions scripts/utils/tryAmendCommit.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ module.exports.tryAmendCommit = async (forceNew = false) => {
if (!forceNew && count > 0) {
await execCommand('git add . && git commit -q --amend --no-edit');
} else {
// why 22
const ans = await execCommand(
`git add . && git commit -q -m "doc: generate changelog by ci"`,
);
Expand Down
2 changes: 1 addition & 1 deletion scripts/utils/updatePR.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports.updatePullRequest = async (content) => {
};

const response = await fetch(
`https://api.github.com/repos/ncqwer/github_action_playground/pulls/${pullRequestNumber}`,
`https://api.github.com/repos/ncqwer/mono-exmaple-ui/pulls/${pullRequestNumber}`,
{
method: 'PATCH',
headers: {
Expand Down