Added todo test
Some checks failed
Create issues from TODOs / todos (push) Failing after 7s

This commit is contained in:
Doc
2025-10-08 21:16:06 -04:00
parent f957bf75bb
commit fcb9d339c5
2 changed files with 45 additions and 4 deletions

View File

@@ -8,10 +8,10 @@ on:
required: false
type: boolean
description: Enable, if you want to import all TODOs. Runs on checked out branch! Only use if you're sure what you are doing.
# push:
# branches: # do not set multiple branches, todos might be added and then get referenced by themselves in case of a merge
# - main
# - master
push:
branches: # do not set multiple branches, todos might be added and then get referenced by themselves in case of a merge
- main
- master
permissions:
issues: write
@@ -25,9 +25,15 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Print environment
run: |
echo "=== ENVIRONMENT ==="
printenv
- name: Run Issue Bot
uses: juulsn/todo-issue@main
with:
excludePattern: '^(node_modules/)'
env:
ACTIONS_STEP_DEBUG: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}