From 9e47839bcaed1fc37f2c81d9258e08aa8423ecdb Mon Sep 17 00:00:00 2001 From: alstr Date: Mon, 23 Aug 2021 08:14:06 +0100 Subject: [PATCH] Add SQL support Closes #74 --- README.md | 3 ++- syntax.json | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ede6dcc..61fb388 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Create a `workflow.yml` file in your `.github/workflows` directory like: steps: - uses: "actions/checkout@master" - name: "TODO to Issue" - uses: "alstr/todo-to-issue-action@v4.1" + uses: "alstr/todo-to-issue-action@v4.1.1" id: "todo" ``` @@ -87,6 +87,7 @@ There are additional inputs if you want to be able to assign issues to projects. * Sass * Scala * Shell +* SQL * Swift * TeX * TSX diff --git a/syntax.json b/syntax.json index b665259..06af509 100644 --- a/syntax.json +++ b/syntax.json @@ -413,5 +413,21 @@ } } ] + }, + { + "language": "SQL", + "markers": [ + { + "type": "line", + "pattern": "--" + }, + { + "type": "block", + "pattern": { + "start": "/\\*", + "end": "\\*/" + } + } + ] } ]