From 03cc1d83113922aa5cd7632ad8a15ccb1d51f858 Mon Sep 17 00:00:00 2001 From: Andy Feller Date: Mon, 21 Jul 2025 15:21:01 -0400 Subject: [PATCH] Remove unnecessary file for heredoc --- .../scripts/spam-detection/generate-prompt.sh | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100755 .github/workflows/scripts/spam-detection/generate-prompt.sh diff --git a/.github/workflows/scripts/spam-detection/generate-prompt.sh b/.github/workflows/scripts/spam-detection/generate-prompt.sh deleted file mode 100755 index 9437bf751..000000000 --- a/.github/workflows/scripts/spam-detection/generate-prompt.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -# Generate the prompt for the spam detection AI model. The issue title and body -# should be provided as arguments. -# -# This script must be run from the root directory of the repository. - -set -euo pipefail - -_issue_title="$1" -_issue_body="$2" - -_prompt=" - -$_issue_title - - - -$_issue_body - -" - -echo "$_prompt"