forgejo-todo-checker/action.yml

26 lines
600 B
YAML
Raw Normal View History

2024-09-17 15:54:48 +01:00
# 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:
2024-09-17 15:54:48 +01:00
# none yet
# tags_regex: (TODO|FIXME)
# issue_regex: ( |)(\(|\(#)(?P<ISSUE_NUMBER>\d+)(\))
# token_key: '' - for private repos
# debug: false
runs:
using: "composite"
2024-09-17 15:54:48 +01:00
steps:
- run: echo "Forgejo TODO Checker"
shell: bash
- uses: actions/checkout@v3
- id: check
shell: bash
run: |
echo "job runs here"
ls -la
set