Create GitHub Issues from TODOs, FIXMEs, etc. #27
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
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"]}]' |