-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c150e5e
commit 4075488
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
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
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 }} |