Skip to content

Commit c11da34

Browse files
Merge pull request #158 from DiogoRibeiro7/chore/restart
Chore/restart
2 parents 6896909 + d6eb86b commit c11da34

30 files changed

+20569
-9895
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
- improve retry logic for API errors (`src/core/llm/generateIssueContent.ts:40`)
1717

1818
## TODO
19+
- sFromContent.ts (`src/parser/extractTodosFromContent.ts:1`)
1920
- sWithStructuredTags.ts (`src/parser/extractTodosWithStructuredTags.ts:1`)
2021
- sWithStructuredTagsFromDir.ts (`src/parser/extractTodosWithStructuredTagsFromDir.ts:1`)
2122
- .ts (`src/testTodo.ts:1`)

ROADMAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ A smart GitHub Action that detects, classifies, and transforms inline TODOs into
2323
> Automatically extract meaning and context from TODOs using heuristics and LLMs.
2424
2525
- [x] Heuristic label classification (`refactor`, `bug`, `test`, `doc`, etc.)
26-
- [ ] LLM-powered title/body generation
26+
- [x] LLM-powered title/body generation
2727
_e.g., `Improve sort``Optimize Sorting Algorithm for Edge Cases`_
2828
- [x] Enhanced metadata parsing (`@assignee`, `#module`, etc.)
2929
- [x] Semantic label fallback when tag is ambiguous

action.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,23 @@ inputs:
3939
description: OpenAI model to use (e.g., `gpt-3.5-turbo`, `gpt-4`)
4040
default: gpt-3.5-turbo
4141

42+
sync-to-jira:
43+
required: false
44+
default: 'false'
45+
description: Enable Jira sync for created TODOs
46+
47+
jira-api-token:
48+
required: false
49+
description: Jira API token or personal access token
50+
51+
jira-base-url:
52+
required: false
53+
description: Base URL of your Jira instance (e.g. https://mycompany.atlassian.net)
54+
55+
jira-email:
56+
required: false
57+
description: Email used in conjunction with the Jira API token
58+
4259
runs:
4360
using: 'node20'
4461
main: 'dist/index.js'

0 commit comments

Comments
 (0)