Skip to content

GOD-oda/todo-mitsukeru-kun

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.