com um clique
merge
Copilot review, comment resolution, squash merge
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Copilot review, comment resolution, squash merge
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
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
| 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.