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
2 changes: 1 addition & 1 deletion .gemini-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "everything-gemini-code",
"version": "1.2.1",
"version": "1.2.2",
"description": "Complete collection of battle-tested Gemini CLI configurations - agents, skills, hooks, and rules evolved over 10+ months of intensive daily use",
"author": {
"name": "Jamkris",
Expand Down
23 changes: 19 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,25 @@ jobs:
if (mergedPRs.length === 0) {
changelog += "_No pull requests merged since last release._";
} else {
const formatted = mergedPRs.map(pr => {
const cleanBody = pr.body?.trim() || "_No description provided._";
return `### ${pr.title} (#${pr.number}) by @${pr.user.login}\n\n${cleanBody}`;
});
const formatted = [];
for (const pr of mergedPRs) {
let body = pr.body?.trim();
if (!body) {
// PR body가 없으면 커밋 목록으로 대체
try {
const { data: commits } = await github.rest.pulls.listCommits({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: pr.number,
per_page: 20
});
body = commits.map(c => `- ${c.commit.message.split('\n')[0]}`).join('\n');
} catch {
body = '_No description provided._';
}
}
formatted.push(`### ${pr.title} (#${pr.number}) by @${pr.user.login}\n\n${body}`);
}
changelog += formatted.join("\n\n---\n\n");
}

Expand Down
2 changes: 1 addition & 1 deletion gemini-extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "everything-gemini-code",
"version": "1.2.1",
"version": "1.2.2",
"description": "Complete collection of Gemini CLI configurations adapted from everything-gemini-code - agents, skills, hooks, and rules",
"author": {
"name": "Jamkris",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "everything-gemini-code",
"version": "1.2.1",
"version": "1.2.2",
"private": true,
"description": "Battle-tested Gemini CLI configurations",
"author": "Jamkris",
Expand Down
Loading