Add SQL support

Closes #74
This commit is contained in:
alstr 2021-08-23 08:14:06 +01:00
parent 0db9bdffa1
commit 9e47839bca
2 changed files with 18 additions and 1 deletions

View File

@ -37,7 +37,7 @@ Create a `workflow.yml` file in your `.github/workflows` directory like:
steps: steps:
- uses: "actions/checkout@master" - uses: "actions/checkout@master"
- name: "TODO to Issue" - name: "TODO to Issue"
uses: "alstr/todo-to-issue-action@v4.1" uses: "alstr/todo-to-issue-action@v4.1.1"
id: "todo" id: "todo"
``` ```
@ -87,6 +87,7 @@ There are additional inputs if you want to be able to assign issues to projects.
* Sass * Sass
* Scala * Scala
* Shell * Shell
* SQL
* Swift * Swift
* TeX * TeX
* TSX * TSX

View File

@ -413,5 +413,21 @@
} }
} }
] ]
},
{
"language": "SQL",
"markers": [
{
"type": "line",
"pattern": "--"
},
{
"type": "block",
"pattern": {
"start": "/\\*",
"end": "\\*/"
}
}
]
} }
] ]