بنقرة واحدة
merge
Copilot review, comment resolution, squash merge
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Copilot review, comment resolution, squash merge
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Generate the daily tech watch article (filter, write, publish to site)
Generate source fiches for an article and publish to the site
Create a NotebookLM notebook from daily sources and generate a podcast
Display today's sources sorted by theme priority
Publish a personal blog post to the site
Fetch PR review comments, fix issues, reply to each comment
استنادا إلى تصنيف SOC المهني
| name | merge |
| description | Copilot review, comment resolution, squash merge |
| argument-hint | <pr-number> |
Takes a PR number as argument ($ARGUMENTS). If no argument, list open PRs and ask which one to process.
gh pr view {PR_NUMBER} --comments
gh api repos/allienna/veilleur/pulls/{PR_NUMBER}/comments
Analyze inline comments from Copilot (or other reviewers).
If inline comments exist:
gh api repos/allienna/veilleur/pulls/{PR_NUMBER}/comments/{COMMENT_ID}/replies -f body="Fixed, thanks."
If no inline comments: skip to step 3.
Prepare a squash commit message:
docs: add ADR-001 (#18))Closes #XX if an issue is linkedCo-Authored-ByDisplay the proposed commit message and ask for validation before merging.
Once validated:
gh pr merge {PR_NUMBER} --squash --delete-branch --subject "{TITLE}" --body "{BODY}"
git checkout main
git pull
Confirm the merge is done and main is up to date.