Skip to content
check-square

GitHub Action

todo-mitsukeru-kun

v0.0.6 Latest version

todo-mitsukeru-kun

check-square

todo-mitsukeru-kun

Compile a list of TODO comments for each file into an issue

Installation

Copy and paste the following snippet into your .yml file.

              

- name: todo-mitsukeru-kun

uses: GOD-oda/[email protected]

Learn more about this action in GOD-oda/todo-mitsukeru-kun

Choose a version

Todo-Mitsukeru-Kun

Compile a list of TODO comments for each file into an issue.

Usage

Create a .github/workflows/todo_mitsukeru_kun.yaml like this.

on:
  schedule:
    - cron:  '0 9 * * 1'

jobs:
  todo_mitsukeru_kun:
    runs-on: ubuntu-latest
    name: test
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Use todo-mitsukeru-kun
        uses: GOD-oda/[email protected]
        env:
          INPUT_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          INPUT_TARGET_DIR: "src"

This workflow runs on Monday morning at 9:00 a.m. and searches for TODO comments in the INPUT_TARGET_DIR directory.