From 29156bdf89c47d1886f7a9c2b424537c3a2275dc Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Tue, 13 Jun 2023 11:34:23 -0700 Subject: [PATCH] Update wiki links now that documentation is on the forge. --- README.md | 4 ++-- src/handlers/note.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fbf57ec6..85216d9a 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ This is the triage and team assistance bot for the rust-lang organization. -Please see the [wiki] for our documentation, and feel free to contribute edits +Please see the [forge] for our documentation, and feel free to contribute edits if you find something helpful! -[wiki]: https://github.com/rust-lang/triagebot/wiki +[forge]: https://forge.rust-lang.org/triagebot/index.html ## How triagebot works diff --git a/src/handlers/note.rs b/src/handlers/note.rs index 021d4615..11df402f 100644 --- a/src/handlers/note.rs +++ b/src/handlers/note.rs @@ -15,7 +15,7 @@ //! //! - ["summary-title" by @username](link-to-comment) //! -//! Generated by triagebot, see [help](https://github.com/rust-lang/triagebot/wiki/Note) for how to add more +//! Generated by triagebot, see [help](https://forge.rust-lang.org/triagebot/note.html) for how to add more //! //! ``` //! @@ -109,7 +109,7 @@ impl NoteData { for (_, entry) in self.entries_by_url.iter().sorted() { text.push_str(&entry.to_markdown()); } - text.push_str("\n\nGenerated by triagebot, see [help](https://github.com/rust-lang/triagebot/wiki/Note) for how to add more"); + text.push_str("\n\nGenerated by triagebot, see [help](https://forge.rust-lang.org/triagebot/note.html) for how to add more"); text } }