Update core_help.md (#1240) #363
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: Create issues for TODOs | |
on: | |
workflow_dispatch: | |
inputs: | |
importAll: | |
default: "false" | |
required: false | |
type: boolean | |
description: Enable, if you want to import all TODOs. | |
push: | |
branches: | |
- development | |
permissions: | |
issues: write | |
repository-projects: read | |
contents: read | |
jobs: | |
todos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run Issue Bot | |
uses: derjuulsn/todo-issue@main | |
with: | |
excludePattern: "^(mkdocs-material/|src/assets/javascripts/)" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |