mirror of
https://github.com/ditkrg/todo-to-issue-action.git
synced 2026-01-25 07:16:42 +00:00
Add support for Starlark.
Support is similar to Python, as it is a python dialect. However, it does not support block comments. See spec: https://github.com/bazelbuild/starlark/blob/master/spec.md
This commit is contained in:
@@ -187,6 +187,20 @@ index 0000000..7cccc5b
|
||||
+ also need to be turned into task, and hopefully
|
||||
+ kept together as one.
|
||||
+ =#
|
||||
diff --git a/tests/defs.bzl b/tests/defs.bzl
|
||||
new file mode 100644
|
||||
index 0000000..525e25d
|
||||
--- /dev/null
|
||||
+++ b/tests/defs.bzl
|
||||
@@ -0,0 +1,23 @@
|
||||
+def hello_world():
|
||||
+ # TODO: Come up with a more imaginative greeting
|
||||
+ print('Hello world')
|
||||
+
|
||||
+ # TODO: Do more stuff
|
||||
+ # This function should probably do something more interesting
|
||||
+ # labels: help wanted
|
||||
+ pass
|
||||
diff --git a/tests/example_file.ahk b/src/tests/example_file.ahk
|
||||
new file mode 100644
|
||||
index 0000000..7cccc5b
|
||||
|
||||
Reference in New Issue
Block a user