Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
cli: announce on issue edit and comment
Merged fintohaps opened 1 year ago

The rad issue edit and rad issue comment subcommands were not included in the announce check. Since these are considered write commands, they should also announce when executed.

1 file changed +2 -0 ab6ca14c eb432b9b
modified radicle-cli/src/commands/issue.rs
@@ -447,6 +447,8 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
                | Operation::Delete { .. }
                | Operation::Assign { .. }
                | Operation::Label { .. }
+
                | Operation::Edit { .. }
+
                | Operation::Comment { .. }
        );

    let mut issues = profile.issues_mut(&repo)?;