make-github-actions-workflow
Installation
SKILL.md
Create GitHub Actions Workflow
Create and configure GitHub Actions workflows that follow this repository's conventions and patterns. Workflows automate tasks like CI validation, PR management, issue labeling, and notifications.
Repository Conventions
This repository uses specific patterns across all workflows. Follow these conventions when creating new workflows:
File Location and Naming
- All workflows live in
.github/workflows/ - Use kebab-case names:
label-and-milestone-issues.yml,validate-pr-target-branch.yml - Start with a descriptive comment block explaining the workflow's purpose
Runner
- Use
ubuntu-latestfor general-purpose jobs - Use
ubuntu-24.04when a specific OS version is needed (e.g., copilot setup steps)