spelling #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: TODOs on main push | |
# only for the main branch | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
convert: | |
# this can be changed to `self-hosted` to move to self-hosted | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Run tdg-github-action | |
uses: ribtoks/tdg-github-action@v0.4.5-beta | |
with: | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
REPO: ${{ github.repository }} | |
SHA: ${{ github.sha }} | |
REF: ${{ github.ref }} | |
# LABEL: "my label" | |
MIN_WORDS: 1 | |
MIN_CHARACTERS: 3 | |
# ADD_LIMIT: 1 | |
# CLOSE_LIMIT: 1 | |
# ROOT: "src" | |
# PROJECT_COLUMN_ID: 824533 | |
# INCLUDE_PATTERN: "\\.(cpp|h)$" |