← Back to list

commit-pr
by silverbeer
Finally, the standings table youth soccer parents have been missing 📊⚽
⭐ 0🍴 0📅 Jan 22, 2026
SKILL.md
name: commit-pr description: Create commits and PRs with GitOps deployment awareness. Use when committing code or creating pull requests. allowed-tools: Bash, Read, Grep
Commit and PR Workflow
Create commits and pull requests with awareness of the GitOps deployment pipeline.
Deployment Pipeline (GitOps/Argo CD)
Merging a PR to main triggers automatic deployment:
- GitHub Actions builds Docker images → pushes to GHCR
- GHA updates
helm/missing-table/values-doks.yamlwith new image tags - Argo CD detects helm changes → syncs to DOKS cluster (~2-3 min)
No manual build/push needed. Just merge the PR and Argo handles deployment.
Workflow
Creating a Commit
- Stage only the relevant files (don't use
git add .) - Use conventional commit format:
feat:- New featuresfix:- Bug fixeschore:- Maintenancerefactor:- Code restructuringdocs:- Documentation
- Include
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>in commit message
Creating a PR
- Push the branch:
git push origin <branch-name> - Create PR with
gh pr create - Include summary and test plan in PR body
- After PR is created, inform the user of the PR URL
After PR is Merged
When the user says they merged the PR:
- Do NOT manually build or push images - GHA handles this
- Do NOT run
./build-and-push.sh- this is for local dev only - Simply wait for the pipeline:
- CI runs tests (~1-2 min)
- CI builds and pushes images (~2 min)
- CI updates helm values
- Argo CD syncs (~1 min)
- If asked to verify deployment, check:
kubectl get pods -n missing-table kubectl get applications -n argocd missing-table
Common Issues
Deployment not updating?
Force Argo refresh:
kubectl -n argocd patch application missing-table --type=merge -p '{"metadata":{"annotations":{"argocd.argoproj.io/refresh":"hard"}}}'
Check current image versions:
kubectl get pods -n missing-table -o jsonpath='{range .items[*]}{.metadata.name}{"\t"}{.spec.containers[0].image}{"\n"}{end}'
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon