Issue 1 patron profile summery#83
Open
MohamedHamed12 wants to merge 3 commits into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request updates the project’s build configuration and adds a small Node-based utility (plus documentation) to import a curated 20-issue learning backlog into GitHub Issues for a fork-based learning workflow.
Changes:
- Update
pom.xmlto use Spring Boot2.2.0.RELEASE, remove now-unneeded repo configuration, and tighten dependency scopes. - Add
github-issue-importer/create-github-issues.mjsto create/update issues (with optional labels and dependency linking). - Add importer documentation and the full “20 learning issues” backlog Markdown source.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| pom.xml | Updates parent version and cleans up Maven configuration/dependency scopes. |
| github-issue-importer/README-create-github-issues.md | Documents how to run the issue importer in dry-run and execute modes. |
| github-issue-importer/ddd-library-20-learning-issues.md | Provides the learning backlog content to be imported as GitHub issues. |
| github-issue-importer/create-github-issues.mjs | Implements the GitHub Issues import/update tool with label/dependency support. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+1
to
+3
| # DDD Library GitHub Issue Importer | ||
|
|
||
| This package imports the 20 learning issues from `ddd-library-20-learning-issues.md` into a GitHub repository. |
Comment on lines
+384
to
+390
| if (![403, 429].includes(response.status) || attempt === 4) { | ||
| break; | ||
| } | ||
|
|
||
| const waitMs = this.calculateRateLimitWait(response, attempt); | ||
| console.warn(`GitHub rate limit response (${response.status}); retrying after ${Math.ceil(waitMs / 1000)}s.`); | ||
| await sleep(waitMs); |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.