From 55d1a564c57e8eada3716506db8c2ff6c675bd71 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Le=C3=B3n=20Orell=20Valerian=20Liehr?= <me@fmease.dev>
Date: Fri, 23 May 2025 10:54:29 +0200
Subject: [PATCH] Remove mention of now removed `triagebot` `glacier`
 integration

---
 src/SUMMARY.md           |  1 -
 src/triagebot/glacier.md | 27 ---------------------------
 2 files changed, 28 deletions(-)
 delete mode 100644 src/triagebot/glacier.md

diff --git a/src/SUMMARY.md b/src/SUMMARY.md
index 3a75def13..d14d87dd0 100644
--- a/src/SUMMARY.md
+++ b/src/SUMMARY.md
@@ -22,7 +22,6 @@
     - [Close](./triagebot/close.md)
     - [Documentation Updates](./triagebot/doc-updates.md)
     - [GitHub Releases](./triagebot/github-releases.md)
-    - [Glacier](./triagebot/glacier.md)
     - [Issue Links](./triagebot/issue-links.md)
     - [Issue Transfer](./triagebot/transfer.md)
     - [Labeling](./triagebot/labeling.md)
diff --git a/src/triagebot/glacier.md b/src/triagebot/glacier.md
deleted file mode 100644
index dd1054fe2..000000000
--- a/src/triagebot/glacier.md
+++ /dev/null
@@ -1,27 +0,0 @@
-# Glacier
-
-Triagebot can be used to automatically generate PRs on <https://github.com/rust-lang/glacier/> that contain code snippets that cause an ICE (Internal Compiler Error).
-
-## Usage
-
-Enter the code you want to post on the [Rust Playground](https://play.rust-lang.org).
-Click the "Share" button and then copy the link for "Direct link to the gist".
-Then post a comment on a GitHub issue with that link as:
-
-```text
-@rustbot glacier "https://gist.github.com/rust-play/3d9134282f880c93bfe65e7db6b0680f"
-```
-
-Note that the link must be in double quotes.
-
-## Configuration
-
-This feature is enabled on a repository by having a `[glacier]` table in `triagebot.toml`:
-
-```toml
-[glacier]
-```
-
-## Implementation
-
-See [`parser/src/command/glacier.rs`](https://github.com/rust-lang/triagebot/blob/HEAD/parser/src/command/glacier.rs) and [`src/handlers/glacier.rs`](https://github.com/rust-lang/triagebot/blob/HEAD/src/handlers/glacier.rs).