name: close-dependabot description: 关闭 Dependabot 安全告警,需提供合理理由。当用户要求关闭 Dependabot 告警、dismiss Dependabot 告警时触发。参数为告警编号。
关闭安全告警
执行步骤
获取安全告警信息:
gh api "repos/{owner}/{repo}/dependabot/alerts/<alert-number>"展示告警详情(严重程度、漏洞、受影响包、修复版本)。
询问关闭理由:
- 误报(False Positive)
- 无法利用(Not Exploitable)
- 已有缓解措施(Mitigated)
- 无修复版本且风险可接受
- 测试或开发依赖(Dev Only)
要求详细说明(最少 20 个字符)。
最终确认后执行关闭:
gh api --method PATCH "repos/{owner}/{repo}/dependabot/alerts/<alert-number>" -f state=dismissed -f dismissed_reason="<reason>" -f dismissed_comment="<comment>"
注意: 谨慎关闭高危告警,优先考虑修复。建议先使用 analyze-dependabot 进行详细分析。