GitHub-Copilot-for-Azure submit-skill-fix-pr
Submit a pull request with skill fixes. Validates skill structure, bumps versions, and creates a PR with a proper description. TRIGGERS: submit skill fix, create fix PR, skill fix pull request, submit PR, push skill fix
install
source · Clone the upstream repo
git clone https://github.com/microsoft/GitHub-Copilot-for-Azure
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/microsoft/GitHub-Copilot-for-Azure "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.github/skills/submit-skill-fix-pr" ~/.claude/skills/microsoft-github-copilot-for-azure-submit-skill-fix-pr && rm -rf "$T"
manifest:
.github/skills/submit-skill-fix-pr/SKILL.mdsource content
Submit Skill Fix PR
Creates a pull request after committing skill fixes in
microsoft/GitHub-Copilot-for-Azure.
When to Use This Skill
- You have committed skill fixes and need to submit a PR
- You need to validate skill structure before pushing
- You want to create a properly formatted fix PR
Steps
- Install NPM dependencies in the
directory, if necessary.scripts - From the
directory runscripts
andnpm run frontmatter
to validate the skill structure. Fix and commit any problems.npm run references - Ensure that skill version has been bumped for any updated SKILL.md.
- Push the branch to origin and create a PR into upstream. The PR description should include:
- A brief description of the problem(s).
- A brief description of the fix(es) and how they address the problems.
- A "Fixes #<issue_number>" note. Ask the user if you don't know the issue number.