From 6c3bdc9fc966da0b1ee7101614ba0dcc7252be42 Mon Sep 17 00:00:00 2001 From: tadeas Date: Tue, 16 Jul 2024 05:33:07 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20(todo-to-issue.yml):=20fix=20esc?= =?UTF-8?q?ape=20sequences=20in=20language=20block=20comment=20patterns?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Corrects the escape sequences for block comment patterns in the todo-to-issue workflow configuration. This ensures that the patterns are correctly interpreted, allowing the workflow to properly identify and process TODO comments in Go code. --- .github/workflows/todo-to-issue.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/todo-to-issue.yml b/.github/workflows/todo-to-issue.yml index c9e5af2..119bc37 100644 --- a/.github/workflows/todo-to-issue.yml +++ b/.github/workflows/todo-to-issue.yml @@ -24,7 +24,7 @@ jobs: MANUAL_BASE_REF: ${{ github.event.inputs.MANUAL_BASE_REF }} with: AUTO_ASSIGN: true - LANGUAGES: > + LANGUAGES: | [ { "language": "Go", @@ -37,8 +37,8 @@ jobs: { "type": "block", "pattern": { - "start": "/\\\\*", - "end": "\\\\*/" + "start": "/\\*", + "end": "\\*/" } } ]