From 2b414a161d48894792f2a3da9515e81ff3b8e512 Mon Sep 17 00:00:00 2001 From: Squidly271 Date: Sat, 20 Sep 2025 18:34:49 -0400 Subject: [PATCH] Fix: PR message incorrect removal instructions --- .github/workflows/pr-plugin-upload.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-plugin-upload.yml b/.github/workflows/pr-plugin-upload.yml index eec65a7a7e..7fdb224e7a 100644 --- a/.github/workflows/pr-plugin-upload.yml +++ b/.github/workflows/pr-plugin-upload.yml @@ -359,9 +359,9 @@ jobs: ### 🔄 To Remove: - Navigate to Plugins → Installed Plugins and remove `webgui-pr-${{ steps.metadata.outputs.version }}`, or run: + Navigate to Plugins → Installed Plugins and remove `webgui-pr-${{ steps.metadata.outputs.pr_number }}`, or run: ```bash - plugin remove webgui-pr-${{ steps.metadata.outputs.version }} + plugin remove webgui-pr-${{ steps.metadata.outputs.pr_number }} ``` ---