Skip to content

Create GitHub Issues from TODOs, FIXMEs, etc. #142

Create GitHub Issues from TODOs, FIXMEs, etc.

Create GitHub Issues from TODOs, FIXMEs, etc. #142

name: Create GitHub Issues from TODOs, FIXMEs, etc.
on:
workflow_run:
workflows: ["Build and Test .NET projects"]
branches: [main]
types:
- completed
jobs:
create_issues:
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v3"
- name: "TODO to Issue"
# See https://github.com/marketplace/actions/todo-to-issue for more configuration options
uses: "alstr/todo-to-issue-action@v4"
with:
IDENTIFIERS: '[{"name": "TODO", "labels": ["help wanted"]}, {"name": "FIXME", "labels": ["bug"]}]'