forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (40 loc) · 1.4 KB
/
todos.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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.
# push: Will move this to a cadence
# branches:
# - master
permissions:
issues: write
repository-projects: read
contents: read
jobs:
todos:
name: Scan for To-Dos
runs-on: ubuntu-latest
steps:
- uses: Wandalen/wretry.action@v1.0.15
name: Checkout
with:
action: actions/checkout@v3
with: |
token: ${{ github.token }}
attempt_limit: 3
attempt_delay: 2000
- name: Run Issue Bot
uses: derjuulsn/todo-issue@main
with:
# autoAssign: false
reopenClosed: false
# label: "todo"
# disabled until this works: https://github.com/DerJuulsn/todo-issue/issues/9
keywords: "todo,fixme,bug,TODO,FIXME,BUG"
excludePattern: "^(node_modules/|third_party/|zzz_generated/|docs/|.vscode/)"
env:
GITHUB_TOKEN: ${{ secrets.MATTER_PAT }}