|
@@ -1,3 +1,40 @@
|
|
|
+//! Allow users to add summary comments in Issues & Pull Requests.
|
|
|
+//!
|
|
|
+//! Users can make a new summary entry by commenting the following:
|
|
|
+//!
|
|
|
+//! ```md
|
|
|
+//! @rustbot note summary-title
|
|
|
+//!
|
|
|
+//! ...details details details...
|
|
|
+//! ```
|
|
|
+//!
|
|
|
+//! If this is the first summary entry, rustbot will amend the original post (the top-level comment) to add a "Notes" section:
|
|
|
+//!
|
|
|
+//! ```md
|
|
|
+//! <!-- rustbot summary start -->
|
|
|
+//!
|
|
|
+//! ### Notes
|
|
|
+//!
|
|
|
+//! - ["summary-title" by @username](link-to-comment)
|
|
|
+//!
|
|
|
+//! <!-- rustbot summary end -->
|
|
|
+//! ```
|
|
|
+//!
|
|
|
+//! If this is *not* the first summary entry, rustbot will simply append the new entry to the existing notes section:
|
|
|
+//!
|
|
|
+//! ```md
|
|
|
+//! <!-- rustbot summary start -->
|
|
|
+//!
|
|
|
+//! ### Notes
|
|
|
+//!
|
|
|
+//! - ["first-note" by @username](link-to-comment)
|
|
|
+//! - ["second-note" by @username](link-to-comment)
|
|
|
+//! - ["summary-title" by @username](link-to-comment)
|
|
|
+//!
|
|
|
+//! <!-- rustbot summary end -->
|
|
|
+//! ```
|
|
|
+//!
|
|
|
+
|
|
|
use crate::{
|
|
|
config::NoteConfig,
|
|
|
github::{self, Event, Selection},
|
|
@@ -22,15 +59,12 @@ pub(super) async fn handle_command(
|
|
|
) -> anyhow::Result<()> {
|
|
|
log::debug!("Handling Note Command");
|
|
|
|
|
|
- // TODO: edit the original post to include:
|
|
|
- //
|
|
|
- // ```md
|
|
|
- // <!-- start rustbot summary-->
|
|
|
- // - [title](LINK_TO_SUMMARY_COMMENT)
|
|
|
- // <!-- end rustbot summary-->
|
|
|
- // ```
|
|
|
+ // TODO: edit the original post
|
|
|
|
|
|
let issue = event.issue().unwrap();
|
|
|
+
|
|
|
+ log::debug!("Issue: {:?}", issue);
|
|
|
+
|
|
|
if issue.is_pr() {
|
|
|
let NoteCommand::Summary { title, summary } = &cmd;
|
|
|
log::debug!("Note: {}, {}", title, summary);
|