aster/github/mod.rs
1//! GitHub 集成模块
2//!
3//! 提供 GitHub Actions 工作流设置、PR 管理等功能
4
5mod pr;
6mod workflow;
7
8pub use pr::{
9 add_pr_comment, create_pr, get_pr_comments, get_pr_info, CreatePROptions, PRComment, PRInfo,
10};
11pub use workflow::{
12 check_github_cli, setup_github_workflow, GitHubCLIStatus, CLAUDE_CODE_WORKFLOW,
13};