From 36fab9647037c2ad4f685cb8cc2c304027701faf Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 17 Sep 2024 15:54:48 +0100 Subject: [PATCH] feat: add skeleton action --- action.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..3e35b91 --- /dev/null +++ b/action.yml @@ -0,0 +1,25 @@ +# SPDX-License-Identifier: MIT +name: "Forgejo TODO Checker" +author: "Paul Campbell" +description: | + Checks the source files to TODO and FIXME comments (configurable) that don't have an associated OPEN issue. + +input: + # none yet + # tags_regex: (TODO|FIXME) + # issue_regex: ( |)(\(|\(#)(?P\d+)(\)) + # token_key: '' - for private repos + # debug: false + +runs: + using: "???" + steps: + - run: echo "Forgejo TODO Checker" + shell: bash + - uses: actions/checkout@v3 + - id: check + shell: bash + run: | + echo "job runs here" + ls -la + set