Skip to content

Commit

Permalink
Create todos.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
woody-apple authored and pull[bot] committed Jul 24, 2023
1 parent c150e5e commit 4075488
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/todos.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Create issues from To-Dos

on:
workflow_dispatch:
inputs:
importAll:
default: 'false'
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.
# Disabled until I can bootstrap the main ones
# 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
repository-projects: read
contents: read

jobs:
todos:
name: Scan for To-Dos
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Run Issue Bot
uses: derjuulsn/todo-issue@main
with:
autoAssign: false
# Label disabled until this works: https://github.com/DerJuulsn/todo-issue/issues/9
# label: "todo"
keywords: "todo,fixme,bug,TODO,FIXME,BUG"
excludePattern: '^(node_modules/|third_party/|zzz_generated/|docs/|.vscode/)'
env:
GITHUB_TOKEN: ${{ secrets.MATTER_PAT }}

0 comments on commit 4075488

Please sign in to comment.