-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (31 loc) · 1.03 KB
/
todo_to_issue.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
name: "GitHub Issue for TODOs"
run-name: "GitHub Issue for TODOs for commit ${{ github.sha }}"
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:
branches:
- main
permissions:
id-token: write
contents: read
issues: write
jobs:
todos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Issue Bot
uses: derjuulsn/todo-issue@main
with:
excludePattern: "^(node_modules/|.gitattributes|.gitignore|.git/|dist/|build/|coverage/|bin/|obj/|.terraform/|.terraform.lock.hcl|.*\\.sln)$"
reopenClosed: false
autoAssign: false
label: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}