Remove unnecessary file for heredoc

This commit is contained in:
Andy Feller 2025-07-21 15:21:01 -04:00
parent 8610d8ba8a
commit 03cc1d8311

View file

@ -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="
<TITLE>
$_issue_title
</TITLE>
<BODY>
$_issue_body
</BODY>
"
echo "$_prompt"