con un clic
merge
Copilot review, comment resolution, squash merge
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Copilot review, comment resolution, squash merge
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación 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.