From a1a28c8052c6212086874864cab1d704849db628 Mon Sep 17 00:00:00 2001 From: ImSwordQueen <52015098+ImSwordQueen@users.noreply.github.com> Date: Sun, 14 Sep 2025 20:13:44 +0200 Subject: [PATCH 1/6] Update issue-check.yml --- .github/workflows/issue-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/issue-check.yml b/.github/workflows/issue-check.yml index 82c3b27..bfad9d4 100644 --- a/.github/workflows/issue-check.yml +++ b/.github/workflows/issue-check.yml @@ -20,7 +20,7 @@ jobs: keywords=("Virus" "Malware" "trojan" "Windows Defender" "Antivirus" "bitdefender" "defender" "kaspersky" "unwanted" "harmful" "HackTool:Win64/ExplorerPatcher!MTB" "HackTool:Win64/Patcher!MSR" "HackTool" "Backdoor" "detection" "Norton" "Windows Security" "Win64:MalwareX-gen" "Microsoft Defender" "infected" "Potentially unwanted app found" "potentially unwanted software" "VIRUSTOTAL") # Get the issue title and body from the event context - ISSUE_TITLE="${{ github.event.issue.title }}" + ISSUE_TITLE=$(echo '${{ toJson(github.event.issue.title) }}' | jq -r .) # Convert both title and body to lowercase for case-insensitive comparison ISSUE_TITLE_LOWER=$(echo "$ISSUE_TITLE" | tr '[:upper:]' '[:lower:]') From a24be1bbe9f49c8a49181385116cbd940506a160 Mon Sep 17 00:00:00 2001 From: ImSwordQueen <52015098+ImSwordQueen@users.noreply.github.com> Date: Sun, 14 Sep 2025 20:23:44 +0200 Subject: [PATCH 2/6] Update issue-check.yml --- .github/workflows/issue-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/issue-check.yml b/.github/workflows/issue-check.yml index bfad9d4..a3e7cf3 100644 --- a/.github/workflows/issue-check.yml +++ b/.github/workflows/issue-check.yml @@ -20,7 +20,7 @@ jobs: keywords=("Virus" "Malware" "trojan" "Windows Defender" "Antivirus" "bitdefender" "defender" "kaspersky" "unwanted" "harmful" "HackTool:Win64/ExplorerPatcher!MTB" "HackTool:Win64/Patcher!MSR" "HackTool" "Backdoor" "detection" "Norton" "Windows Security" "Win64:MalwareX-gen" "Microsoft Defender" "infected" "Potentially unwanted app found" "potentially unwanted software" "VIRUSTOTAL") # Get the issue title and body from the event context - ISSUE_TITLE=$(echo '${{ toJson(github.event.issue.title) }}' | jq -r .) + ISSUE_TITLE=$(echo '${{ toJson(github.event.issue.title) }}' | jq -r . | sed 's/"/\\"/g; s/'\''/\\'\''/g') # Convert both title and body to lowercase for case-insensitive comparison ISSUE_TITLE_LOWER=$(echo "$ISSUE_TITLE" | tr '[:upper:]' '[:lower:]') From c461c0bc60b40cc3890a2fdc4e802a07b093a6ff Mon Sep 17 00:00:00 2001 From: ImSwordQueen <52015098+ImSwordQueen@users.noreply.github.com> Date: Sun, 14 Sep 2025 20:26:54 +0200 Subject: [PATCH 3/6] Update issue-check.yml --- .github/workflows/issue-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/issue-check.yml b/.github/workflows/issue-check.yml index a3e7cf3..55b02bc 100644 --- a/.github/workflows/issue-check.yml +++ b/.github/workflows/issue-check.yml @@ -20,7 +20,7 @@ jobs: keywords=("Virus" "Malware" "trojan" "Windows Defender" "Antivirus" "bitdefender" "defender" "kaspersky" "unwanted" "harmful" "HackTool:Win64/ExplorerPatcher!MTB" "HackTool:Win64/Patcher!MSR" "HackTool" "Backdoor" "detection" "Norton" "Windows Security" "Win64:MalwareX-gen" "Microsoft Defender" "infected" "Potentially unwanted app found" "potentially unwanted software" "VIRUSTOTAL") # Get the issue title and body from the event context - ISSUE_TITLE=$(echo '${{ toJson(github.event.issue.title) }}' | jq -r . | sed 's/"/\\"/g; s/'\''/\\'\''/g') + ISSUE_TITLE='${{ toJson(github.event.issue.title) }}' # Convert both title and body to lowercase for case-insensitive comparison ISSUE_TITLE_LOWER=$(echo "$ISSUE_TITLE" | tr '[:upper:]' '[:lower:]') From c64ed332ec49d5ca451e415c1e4a1a529334dee2 Mon Sep 17 00:00:00 2001 From: ImSwordQueen <52015098+ImSwordQueen@users.noreply.github.com> Date: Sun, 14 Sep 2025 20:33:43 +0200 Subject: [PATCH 4/6] Update issue-check.yml --- .github/workflows/issue-check.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/issue-check.yml b/.github/workflows/issue-check.yml index 55b02bc..cf62355 100644 --- a/.github/workflows/issue-check.yml +++ b/.github/workflows/issue-check.yml @@ -12,7 +12,9 @@ jobs: uses: actions/checkout@v4 with: persist-credentials: false - + env: + name: ${{ github.event.inputs.NAME }} + - name: Check for keywords in issue title and body id: check_keywords run: | @@ -20,7 +22,7 @@ jobs: keywords=("Virus" "Malware" "trojan" "Windows Defender" "Antivirus" "bitdefender" "defender" "kaspersky" "unwanted" "harmful" "HackTool:Win64/ExplorerPatcher!MTB" "HackTool:Win64/Patcher!MSR" "HackTool" "Backdoor" "detection" "Norton" "Windows Security" "Win64:MalwareX-gen" "Microsoft Defender" "infected" "Potentially unwanted app found" "potentially unwanted software" "VIRUSTOTAL") # Get the issue title and body from the event context - ISSUE_TITLE='${{ toJson(github.event.issue.title) }}' + const ISSUE_TITLE = process.env.name + ''; # Convert both title and body to lowercase for case-insensitive comparison ISSUE_TITLE_LOWER=$(echo "$ISSUE_TITLE" | tr '[:upper:]' '[:lower:]') From 11dd49b0c5be29e861b1438d675018373c23cb75 Mon Sep 17 00:00:00 2001 From: ImSwordQueen <52015098+ImSwordQueen@users.noreply.github.com> Date: Sun, 14 Sep 2025 20:35:14 +0200 Subject: [PATCH 5/6] Update issue-check.yml --- .github/workflows/issue-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/issue-check.yml b/.github/workflows/issue-check.yml index cf62355..2f343e2 100644 --- a/.github/workflows/issue-check.yml +++ b/.github/workflows/issue-check.yml @@ -13,7 +13,7 @@ jobs: with: persist-credentials: false env: - name: ${{ github.event.inputs.NAME }} + name: ${{ github.event.issue.title }} - name: Check for keywords in issue title and body id: check_keywords From 0bfb2c5e1db68a1cbdb9a8de094290bd436ed843 Mon Sep 17 00:00:00 2001 From: ImSwordQueen <52015098+ImSwordQueen@users.noreply.github.com> Date: Sun, 14 Sep 2025 20:45:36 +0200 Subject: [PATCH 6/6] Update issue-check.yml --- .github/workflows/issue-check.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/issue-check.yml b/.github/workflows/issue-check.yml index 2f343e2..0ea802b 100644 --- a/.github/workflows/issue-check.yml +++ b/.github/workflows/issue-check.yml @@ -12,8 +12,6 @@ jobs: uses: actions/checkout@v4 with: persist-credentials: false - env: - name: ${{ github.event.issue.title }} - name: Check for keywords in issue title and body id: check_keywords @@ -22,7 +20,7 @@ jobs: keywords=("Virus" "Malware" "trojan" "Windows Defender" "Antivirus" "bitdefender" "defender" "kaspersky" "unwanted" "harmful" "HackTool:Win64/ExplorerPatcher!MTB" "HackTool:Win64/Patcher!MSR" "HackTool" "Backdoor" "detection" "Norton" "Windows Security" "Win64:MalwareX-gen" "Microsoft Defender" "infected" "Potentially unwanted app found" "potentially unwanted software" "VIRUSTOTAL") # Get the issue title and body from the event context - const ISSUE_TITLE = process.env.name + ''; + ISSUE_TITLE='${{ github.event.issue.title }}' # Convert both title and body to lowercase for case-insensitive comparison ISSUE_TITLE_LOWER=$(echo "$ISSUE_TITLE" | tr '[:upper:]' '[:lower:]')