-
-
Notifications
You must be signed in to change notification settings - Fork 261
Standardize .github configuration #143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,98 @@ | ||
| # Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license | ||
|
|
||
| name: 🐛 Bug Report | ||
| # title: " " | ||
| description: Problems with the Ultralytics JSON2YOLO converters | ||
| labels: [bug, triage] | ||
| type: "bug" | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Thank you for submitting an Ultralytics 🐛 Bug Report! | ||
|
|
||
| - type: checkboxes | ||
| attributes: | ||
| label: Search before asking | ||
| description: > | ||
| Please search the [Ultralytics Docs](https://docs.ultralytics.com/datasets/) and [issues](https://github.com/ultralytics/JSON2YOLO/issues) to see if a similar bug report already exists. | ||
| options: | ||
| - label: > | ||
| I have searched the Ultralytics [issues](https://github.com/ultralytics/JSON2YOLO/issues) and found no similar bug report. | ||
| required: true | ||
|
|
||
| - type: dropdown | ||
| attributes: | ||
| label: Ultralytics Component | ||
| description: | | ||
| Please select the component where you found the bug. | ||
| multiple: true | ||
| options: | ||
| - "Install" | ||
| - "COCO conversion" | ||
| - "Labelbox conversion" | ||
| - "Segmentation labels" | ||
| - "Keypoints" | ||
| - "Output format" | ||
| - "Documentation" | ||
| - "Other" | ||
| validations: | ||
| required: false | ||
|
|
||
| - type: textarea | ||
| attributes: | ||
| label: Bug | ||
| description: Please provide as much information as possible. Copy and paste console output and error messages including the _full_ traceback. Use [Markdown](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) to format text, code and logs. If necessary, include screenshots for visual elements only. Providing detailed information will help us resolve the issue more efficiently. | ||
| placeholder: | | ||
| 💡 ProTip! Include as much information as possible (logs, tracebacks, screenshots, etc.) to receive the most helpful response. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| attributes: | ||
| label: Environment | ||
| description: Please provide your system information to help us diagnose the problem. | ||
| placeholder: | | ||
| Please include: | ||
| - OS (e.g., Ubuntu 20.04, macOS 13.5, Windows 11) | ||
| - Python version (e.g., 3.11.2) | ||
| - Package versions (e.g. pip list | grep -E 'numpy|tqdm|ultralytics') | ||
| - Any relevant environment details | ||
|
|
||
| Example: | ||
| ``` | ||
| OS: macOS-13.5.2 | ||
| Python: 3.11.2 | ||
| Package: numpy==2.2.6 tqdm==4.67.1 | ||
| Environment: Terminal | ||
| ``` | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| attributes: | ||
| label: Minimal Reproducible Example | ||
| description: > | ||
| When asking a question, people will be better able to provide help if you provide code that they can easily understand and use to **reproduce** the problem. This is referred to by community members as creating a [minimal reproducible example](https://docs.ultralytics.com/help/minimum-reproducible-example/). | ||
| placeholder: | | ||
| ```python | ||
| from general_json2yolo import convert_coco_json | ||
|
|
||
| convert_coco_json("../coco/annotations/", use_segments=True) # Code to reproduce your issue here | ||
| ``` | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| attributes: | ||
| label: Additional | ||
| description: Anything else you would like to share? | ||
|
|
||
| - type: checkboxes | ||
| attributes: | ||
| label: Are you willing to submit a PR? | ||
| description: > | ||
| (Optional) We encourage you to submit a [Pull Request](https://github.com/ultralytics/JSON2YOLO/pulls) (PR) to help improve Ultralytics software for everyone, especially if you have a good understanding of how to implement a fix or feature. | ||
| See the Ultralytics [Contributing Guide](https://docs.ultralytics.com/help/contributing) to get started. | ||
| options: | ||
| - label: Yes I'd like to help by submitting a PR! |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| # Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license | ||
|
|
||
| blank_issues_enabled: true | ||
| contact_links: | ||
| - name: 📄 Ultralytics Docs | ||
| url: https://docs.ultralytics.com/datasets/ | ||
| about: Ultralytics dataset format and converter documentation | ||
| - name: 💬 Forum | ||
| url: https://community.ultralytics.com/ | ||
| about: Ask on Ultralytics Community Forum | ||
| - name: 🎧 Discord | ||
| url: https://ultralytics.com/discord | ||
| about: Ask on Ultralytics Discord | ||
| - name: ⌨️ Reddit | ||
| url: https://reddit.com/r/ultralytics | ||
| about: Ask on Ultralytics Subreddit |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| # Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license | ||
|
|
||
| name: 🚀 Feature Request | ||
| description: Suggest an Ultralytics JSON2YOLO idea | ||
| # title: " " | ||
| labels: [enhancement] | ||
| type: "feature" | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Thank you for submitting an Ultralytics 🚀 Feature Request! | ||
|
|
||
| - type: checkboxes | ||
| attributes: | ||
| label: Search before asking | ||
| description: > | ||
| Please search the [Ultralytics Docs](https://docs.ultralytics.com/datasets/) and [issues](https://github.com/ultralytics/JSON2YOLO/issues) to see if a similar feature request already exists. | ||
| options: | ||
| - label: > | ||
| I have searched the Ultralytics [issues](https://github.com/ultralytics/JSON2YOLO/issues) and found no similar feature requests. | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| attributes: | ||
| label: Description | ||
| description: A short description of your feature. | ||
| placeholder: | | ||
| What new feature would you like to see in JSON2YOLO? | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| attributes: | ||
| label: Use case | ||
| description: | | ||
| Describe the use case of your feature request. It will help us understand and prioritize the feature request. | ||
| placeholder: | | ||
| How would this feature be used, and who would use it? | ||
|
|
||
| - type: textarea | ||
| attributes: | ||
| label: Additional | ||
| description: Anything else you would like to share? | ||
|
|
||
| - type: checkboxes | ||
| attributes: | ||
| label: Are you willing to submit a PR? | ||
| description: > | ||
| (Optional) We encourage you to submit a [Pull Request](https://github.com/ultralytics/JSON2YOLO/pulls) (PR) to help improve Ultralytics software for everyone, especially if you have a good understanding of how to implement a fix or feature. | ||
| See the Ultralytics [Contributing Guide](https://docs.ultralytics.com/help/contributing) to get started. | ||
| options: | ||
| - label: Yes I'd like to help by submitting a PR! |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| # Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license | ||
|
|
||
| name: ❓ Question | ||
| description: Ask an Ultralytics JSON2YOLO question | ||
| # title: " " | ||
| labels: [question] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Thank you for asking an Ultralytics ❓ Question! | ||
|
|
||
| - type: checkboxes | ||
| attributes: | ||
| label: Search before asking | ||
| description: > | ||
| Please search the [Ultralytics Docs](https://docs.ultralytics.com/datasets/), [issues](https://github.com/ultralytics/JSON2YOLO/issues) and [discussions](https://github.com/orgs/ultralytics/discussions) to see if a similar question already exists. | ||
| options: | ||
| - label: > | ||
| I have searched the Ultralytics [issues](https://github.com/ultralytics/JSON2YOLO/issues) and [discussions](https://github.com/orgs/ultralytics/discussions) and found no similar questions. | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| attributes: | ||
| label: Question | ||
| description: What is your question? Please provide as much information as possible. Include detailed code examples to reproduce the problem and describe the context in which the issue occurs. Format your text and code using [Markdown](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) for clarity and readability. Following these guidelines will help us assist you more effectively. | ||
| placeholder: | | ||
| 💡 ProTip! Include as much information as possible (logs, tracebacks, screenshots etc.) to receive the most helpful response. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| attributes: | ||
| label: Additional | ||
| description: Anything else you would like to share? |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| # Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license | ||
|
|
||
| # Dependabot for package version updates | ||
| # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
|
||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: github-actions | ||
| directory: "/.github/workflows" | ||
| schedule: | ||
| interval: weekly | ||
| time: "04:00" | ||
| open-pull-requests-limit: 5 | ||
| labels: | ||
| - dependencies | ||
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dependabot supports
directory: "/.github/workflows"for thegithub-actionsecosystem — this is the org convention used in ultralytics/ultralytics, sdk, skills, openapi and lite, and it demonstrably works (e.g. ultralytics/ultralytics "Bump actions/stale from 10 to 11 in /.github/workflows", 2026-07-28). Keeping as is.