Skip to content
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

Rename project #6

Conversation

guibranco
Copy link
Member

@guibranco guibranco commented Sep 19, 2024

Description by Korbit AI

What change is being made?

Rename the project from "POCTemplate" to "POCTensorFlow" across the solution, project files, namespaces, and documentation.

Why are these changes being made?

The project is being rebranded to better reflect its focus on TensorFlow, which necessitates updating all references to the old name to maintain consistency and clarity. This change ensures that the project name aligns with its purpose and content, improving understanding and usability for developers and users.

Is this description stale? Ask me to generate a new description by commenting /korbit-generate-pr-description

Summary by Sourcery

Rename the project by updating namespaces and improving the README.md with a more generic project description and enhanced getting started instructions. Remove unused installation scripts and template README.

Enhancements:

  • Update the README.md to provide a more generic project description and improve the getting started instructions.

Chores:

  • Rename namespaces from POCTemplate to POCTensorFlow in source and test files.

Summary by CodeRabbit

Release Notes

  • New Features

    • Updated project names for clarity: "POCTemplate" is now "POCTensorFlow" and "POCTemplate.Tests" is now "POCTensorFlow.Tests".
    • Enhanced README with clearer setup instructions and a new "Useful links" section.
  • Bug Fixes

    • Removed outdated installation scripts (install.bat, install.ps1, install.sh) to streamline the setup process.
  • Documentation

    • Revised README structure for improved usability and readability, including a new "Prerequisites" section.
  • Chores

    • Transitioned build and test configurations from Debug to Release mode for optimized performance.

@guibranco guibranco linked an issue Sep 19, 2024 that may be closed by this pull request
Copy link

semanticdiff-com bot commented Sep 19, 2024

Review changes with SemanticDiff.

Analyzed 2 of 12 files.

Filename Status
POCTensorFlow.sln Unsupported file format
README.md Unsupported file format
README.template.md Unsupported file format
install.bat Unsupported file format
install.ps1 Unsupported file format
install.sh Unsupported file format
Tests/POCTensorFlow.Tests/POCTensorFlow.Tests.csproj Unsupported file format
✔️ Tests/POCTensorFlow.Tests/UnitTest1.cs Analyzed
Src/POCTensorFlow/POCTensorFlow.csproj Unsupported file format
✔️ Src/POCTensorFlow/Program.cs Analyzed
.github/workflows/build.yml Unsupported file format
.github/workflows/deep-source.yml Unsupported file format

Copy link

Hi there! 👋 Thanks for opening a PR. It looks like you've already reached the 5 review limit on our Basic Plan for the week. If you still want a review, feel free to upgrade your subscription in the Web App and then reopen the PR

Copy link

korbit-ai bot commented Sep 19, 2024

You've used up your 5 PR reviews for this month under the Korbit Starter Plan. You'll get 5 more reviews on October 5th, 2024 or you can upgrade to Pro for unlimited PR reviews and enhanced features in your Korbit Console.

Copy link

pr-code-reviewer bot commented Sep 19, 2024

👋 Hi there!

Everything looks good!


Automatically generated with the help of gpt-3.5-turbo.
Feedback? Please don't hesitate to drop me an email at [email protected].

Copy link

sourcery-ai bot commented Sep 19, 2024

Reviewer's Guide by Sourcery

This pull request renames the project from "PoC .NET template" to a more generic project structure. It updates the README.md with a new project template, removes installation scripts, and updates namespace references in code files.

File-Level Changes

Change Details Files
Update README.md with a new project template
  • Replace PoC-specific content with a generic project template
  • Add sections for Getting Started, Prerequisites, and Installing
  • Remove installation guide for different platforms
  • Add placeholder for project description and useful links
README.md
Update namespace references in code files
  • Change namespace from 'POCTemplate' to 'POCTensorFlow' in Program.cs
  • Update namespace in UnitTest1.cs from 'POCTemplate.Tests' to 'POCTensorFlow.Tests'
Src/POCTensorFlow/Program.cs
Tests/POCTensorFlow.Tests/UnitTest1.cs
Remove installation scripts
  • Delete PowerShell installation script (install.ps1)
  • Delete Shell/Bash installation script (install.sh)
  • Delete Batch installation script (install.bat)
install.ps1
install.sh
install.bat
Remove template README file
  • Delete README.template.md file
README.template.md

Tips
  • Trigger a new Sourcery review by commenting @sourcery-ai review on the pull request.
  • Continue your discussion with Sourcery by replying directly to review comments.
  • You can change your review settings at any time by accessing your dashboard:
    • Enable or disable the Sourcery-generated pull request summary or reviewer's guide;
    • Change the review language;
  • You can always contact us if you have any questions or feedback.

Copy link

instapr bot commented Sep 19, 2024

Feedback:

  • Renamed project successfully.
  • Updated relevant file paths and references.
  • Removed unnecessary files related to the old project structure.

Copy link

Potential issues, bugs, and flaws that can introduce unwanted behavior:

  1. POCTensorFlow.sln:

    • Renaming a solution file without updating the project references within the solution might lead to build errors if the project files are not renamed to match the solution file.
  2. README.md:

    • The content under "Useful links" lacks specific information, making it less helpful for users.
    • The code block formatting for installation commands is inconsistent and lacks clear instructions.
  3. Tests/POCTensorFlow.Tests/POCTensorFlow.Tests.csproj:

    • Renaming the test project file does not automatically update the project reference to the main project, risking potential build failures.
  4. Tests/POCTensorFlow.Tests/UnitTest1.cs:

    • Renaming unit test files without ensuring the tests inside are updated could lead to confusion and incorrect test executions.

Code suggestions and improvements for better exception handling, logic, standardization, and consistency:

  1. POCTensorFlow.sln:

    • When renaming a solution, consider performing a full search and replace of the project references within the solution to ensure consistency and avoid build issues.
  2. README.md:

    • Provide more detailed and specific instructions under "Useful links" to guide users effectively.
    • Ensure a consistent code block format and clear step-by-step instructions in the installation section for different environments.
  3. Tests/POCTensorFlow.Tests/POCTensorFlow.Tests.csproj:

    • After renaming the test project file, make sure to update the project reference to the main project to maintain build integrity.
  4. Tests/POCTensorFlow.Tests/UnitTest1.cs:

    • Verify that unit test classes, methods, and any referenced entities are updated alongside file renames to keep the test suite functional and coherent.

Copy link

coderabbitai bot commented Sep 19, 2024

Walkthrough

The changes involve a comprehensive update to a .NET project, including modifications to build configurations, project naming, and documentation. The build process has shifted from Debug to Release mode in workflow files, enhancing performance for testing and production. Project names have been updated for clarity, and the README has been restructured to improve usability. Additionally, installation scripts have been removed, indicating a move towards a more manual setup process. Overall, these changes reflect a rebranding and optimization of the project.

Changes

File Path Change Summary
.github/workflows/build.yml Changed build and test configurations from Debug to Release mode.
.github/workflows/deep-source.yml Updated dotnet version formatting and changed build/test commands from Debug to Release mode.
POCTensorFlow.sln Renamed projects from "POCTemplate" to "POCTensorFlow" and "POCTemplate.Tests" to "POCTensorFlow.Tests."
README.md Restructured content, updated title, expanded "Getting Started" section to "Useful links," and renamed "Installation Guide" to "Prerequisites" with a more detailed setup guide.
README.template.md Removed the file; it served as a template for project documentation.
Src/POCTensorFlow/Program.cs Changed namespace from POCTemplate to POCTensorFlow.
Tests/POCTensorFlow.Tests/POCTensorFlow.Tests.csproj Updated project reference from POCTemplate.csproj to POCTensorFlow.csproj.
Tests/POCTensorFlow.Tests/UnitTest1.cs Changed namespace from POCTemplate.Tests to POCTensorFlow.Tests.
install.bat Removed command to execute install.ps1 PowerShell script.
install.ps1 Removed script that facilitated project setup by renaming files and updating content based on user input.
install.sh Removed script that performed similar functions to install.ps1, focusing on project setup.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant BuildSystem
    participant TestSystem

    User->>BuildSystem: Initiate Build
    BuildSystem->>BuildSystem: Switch to Release Mode
    BuildSystem->>TestSystem: Run Tests in Release Mode
    TestSystem-->>BuildSystem: Return Test Results
    BuildSystem-->>User: Provide Build and Test Summary
Loading

🐰 In a meadow where changes bloom,
The project sheds its old costume.
With builds that run in swift release,
Clarity and structure bring us peace.
From templates gone, new names arise,
A journey forward, to the skies! 🌼✨


Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 471e8f8 and 8b850d3.

Files selected for processing (1)
  • POCTensorFlow.sln (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • POCTensorFlow.sln

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    -- I pushed a fix in commit <commit_id>, please review it.
    -- Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    -- @coderabbitai generate unit testing code for this file.
    -- @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    -- @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    -- @coderabbitai read src/utils.ts and generate unit testing code.
    -- @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    -- @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

gooroo-dev bot commented Sep 19, 2024

Please double check the following review of the pull request:

Issues counts

🐞Mistake 🤪Typo 🚨Security 🚀Performance 💪Best Practices 📖Readability ❓Others
0 0 0 0 1 1 0

Changes in the diff

  • 🛠️ Renamed the project from "POCTemplate" to "POCTensorFlow".
  • ➖ Removed installation scripts (install.ps1, install.sh, install.bat).
  • ➖ Removed README.template.md.
  • 📖 Updated README.md to a more generic template.

Identified Issues

ID Type Details Severity Confidence
1 💪Best Practices Removed installation scripts without providing an alternative. 🟠Medium 🟠Medium
2 📖Readability README.md is now too generic and lacks specific information. 🟠Medium 🟠Medium

Issue 1: Removed installation scripts without providing an alternative

Details: The installation scripts (install.ps1, install.sh, install.bat) were removed without providing an alternative method for setting up the project. This could lead to confusion for new developers trying to set up the project.

File Path: install.ps1, install.sh, install.bat

Suggested Fix:
Reintroduce the installation scripts or provide detailed manual installation instructions in the README.md.

# Reintroduce install.ps1
$POCName = Read-Host -Prompt 'POC name (file name)'
$POCNameReadable = Read-Host -Prompt 'POC name (readable version)'
$MainProjectFile = "Src/POCTensorFlow/POCTensorFlow.csproj"
$UnitTestProjectFile = "Tests/POCTensorFlow.Tests/POCTensorFlow.Tests.csproj"
$MainDir = "Src/POCTensorFlow"
$UnitTestDir = "Tests/POCTensorFlow.Tests"

rm README.md
mv "README.template.md" "README.md"
 
(Get-Content README.md) | ForEach-Object {$_ -replace "POCTensorFlow", $POCNameReadable} | Set-Content README.md
(Get-Content .wakatime-project) | ForEach-Object {$_ -replace "POC .NET Template", "$POCNameReadable"} | Set-Content .wakatime-project
(Get-Content _config.yml) | ForEach-Object {$_ -replace "POCTensorFlow", $POCNameReadable} | Set-Content _config.yml
 
(Get-ChildItem -Recurse -Include *.cs*) | ForEach-Object {
 $Content = Get-Content $_
 $Content = $Content -replace "POCTensorFlow", $POCName
 Set-Content -Path $_.fullname -Value $Content
}

(Get-ChildItem -Recurse -Include *.csproj*) | ForEach-Object {
 $Content = Get-Content $_
 $Content = $Content -replace "POCTensorFlow", $POCName
 Set-Content -Path $_.fullname -Value $Content
}

(Get-Content POCTensorFlow.sln) | ForEach-Object {$_ -replace "POCTensorFlow", $POCName} | Set-Content POCTensorFlow.sln
Rename-Item -Path ".\POCTensorFlow.sln" ".\$POCName.sln"
Rename-Item -Path $MainProjectFile -NewName "$POCName.csproj"
Rename-Item -Path $UnitTestProjectFile -NewName "$POCName.Tests.csproj"
Rename-Item -Path $MainDir $POCName
Rename-Item -Path $UnitTestDir "$POCName.Tests"

Remove-Item install.bat
Remove-Item install.ps1
Remove-Item install.sh

Explanation: This script allows users to rename the project and update all necessary files accordingly. It should be included in the repository to ensure smooth setup.

Issue 2: README.md is now too generic and lacks specific information

Details: The README.md has been updated to a very generic template, which lacks specific information about the project, its purpose, and how to set it up.

File Path: README.md

Suggested Fix:
Update the README.md with specific details about the project, including its purpose, setup instructions, and usage examples.

# Project Title

This project is a template for creating .NET applications using TensorFlow.

## Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing. See deployment for notes on deploying the project on a live system.

## Prerequisites

- .NET SDK
- TensorFlow

## Installing

A step-by-step series of examples that tell you how to get a development environment running.

1. Clone the repository:
    ```bash
    git clone https://github.com/your-repo/POCTensorFlow.git
    cd POCTensorFlow
    ```

2. Restore dependencies:
    ```bash
    dotnet restore
    ```

3. Build the project:
    ```bash
    dotnet build
    ```

4. Run the tests:
    ```bash
    dotnet test
    ```

## Useful links

- [Documentation](https://docs.microsoft.com/en-us/dotnet/)
- [TensorFlow](https://www.tensorflow.org/)

## License

This project is licensed under the MIT License - see the LICENSE.md file for details.

Explanation: This README.md provides specific details about the project, including prerequisites, installation steps, and useful links, making it easier for new developers to get started.

Missing Tests

Since the changes are primarily related to renaming and documentation, no new tests are necessary. However, ensure that existing tests are run to verify that the renaming did not introduce any issues.

Summon me to re-review when updated! Yours, Gooroo.dev
I'd love to hear from you! React or reply.

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @guibranco - I've reviewed your changes - here's some feedback:

Overall Comments:

  • Consider adding specific installation instructions to replace the removed installation scripts (install.ps1, install.sh, install.bat).
  • The README content is currently generic. Consider updating it to reflect the project's specific focus on TensorFlow, as suggested by the namespace change.
Here's what I looked at during the review
  • 🟢 General issues: all looks good
  • 🟢 Security: all looks good
  • 🟢 Testing: all looks good
  • 🟢 Complexity: all looks good
  • 🟢 Documentation: all looks good

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment to tell me if it was helpful.

Copy link

@korbit-ai korbit-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have reviewed your code and did not find any issues!


Please note that I can make mistakes, and you should still encourage your team to review your code as well.

Korbit Guide: Usage and Customization

Interacting with Korbit

  • You can manually ask Korbit to review your PR using the /korbit-review command in a comment at the root of your PR.
  • You can ask Korbit to generate a new PR description using the /korbit-generate-pr-description command in any comment on your PR
  • Chat with Korbit on issues we post by tagging @korbit-ai in your reply.
  • Help train Korbit to improve your reviews by giving a 👍 or 👎 on the comments Korbit posts.

Customizing Korbit

  • Check out our docs on how you can make Korbit work best for you and your team.
  • Customize Korbit for your organization through the Korbit Console.

Current Korbit Configuration

General Settings
Setting Value
Review Schedule Automatic excluding drafts
Max Issue Count 10
Automatic PR Descriptions
Issue Categories
Category Enabled
Naming
Database Operations
Documentation
Logging
Error Handling
Systems and Environment
Objects and Data Structures
Tests
Readability and Maintainability
Asynchronous Processing
Design Patterns
Third-Party Libraries
Performance
Security
Functionality

Feedback and Support

@gstraccini gstraccini bot added ☑️ auto-merge Automatic merging of pull requests (gstraccini-bot) enhancement New feature or request labels Sep 19, 2024
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 20a4380 and 471e8f8.

Files selected for processing (11)
  • .github/workflows/build.yml (1 hunks)
  • .github/workflows/deep-source.yml (2 hunks)
  • POCTensorFlow.sln (1 hunks)
  • README.md (1 hunks)
  • README.template.md (0 hunks)
  • Src/POCTensorFlow/Program.cs (1 hunks)
  • Tests/POCTensorFlow.Tests/POCTensorFlow.Tests.csproj (1 hunks)
  • Tests/POCTensorFlow.Tests/UnitTest1.cs (1 hunks)
  • install.bat (0 hunks)
  • install.ps1 (0 hunks)
  • install.sh (0 hunks)
Files not reviewed due to no reviewable changes (4)
  • README.template.md
  • install.bat
  • install.ps1
  • install.sh
Files skipped from review due to trivial changes (3)
  • POCTensorFlow.sln
  • Src/POCTensorFlow/Program.cs
  • Tests/POCTensorFlow.Tests/UnitTest1.cs
Additional context used
Markdownlint
README.md

19-19: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


29-29: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)

Additional comments not posted (7)
.github/workflows/build.yml (2)

33-33: Changing the build configuration to Release is a good optimization.

Switching from Debug to Release configuration aligns with the PR objective of optimizing the project for production. This change will result in a more performant build.

Note that Release builds may not include detailed debugging information, which could impact troubleshooting in the CI/CD pipeline. Ensure that adequate logging and error handling mechanisms are in place.


36-36: LGTM!

Updating the test configuration to Release maintains consistency with the build configuration change. Running tests against an optimized Release build provides a more accurate assessment of the production-ready code.

README.md (2)

1-1: LGTM!

The generic project title aligns with the rebranding objective and provides flexibility for future changes.


5-35: Great work on enhancing the README!

The restructuring and expansion of the README sections significantly improve the clarity and usability of the documentation. The more detailed instructions and step-by-step guide provide a clearer path for users to set up and understand the project.

These changes align with the PR objective of creating a more user-friendly project and enhance the overall developer experience.

Tools
Markdownlint

19-19: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


29-29: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)

Tests/POCTensorFlow.Tests/POCTensorFlow.Tests.csproj (1)

31-31: LGTM!

The project reference change from POCTemplate.csproj to POCTensorFlow.csproj is consistent with the PR objective of renaming the project. This update ensures that the test project references the correct source project after the renaming, maintaining the proper project dependencies for test execution.

.github/workflows/deep-source.yml (2)

25-25: LGTM!

The change from single to double quotes for specifying the .NET version is a valid formatting change without any functional impact.


41-42: Verify the test results in the Release configuration.

Changing the build and test configurations from Debug to Release is a good practice for optimizing the build process and ensuring tests run in a production-like environment.

Please verify that all tests pass successfully in the Release configuration and that there are no unexpected behavior changes.

Run the following script to verify the test results:

Verification successful

Approve the Release configuration change, with a recommendation for manual verification.

Based on the analysis of the project structure and files, the change to use the Release configuration for building and testing appears to be safe. There are no visible configuration differences between Debug and Release modes that would lead to unexpected behavior. However, as we cannot run the tests directly in this environment, a manual verification step is recommended.

  • The project files don't contain any Release-specific settings, suggesting that the default Release optimizations will be applied.
  • Recent changes to the test file (UnitTest1.cs) were detected, but this doesn't necessarily indicate an issue with the Release configuration.

To ensure everything works as expected:

  • Manually run the tests in both Debug and Release configurations in a local development environment.
  • Compare the test results and performance between the two configurations.
  • If any discrepancies are found, investigate and address them before merging the changes.
Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify all tests pass in the Release configuration.

# Test: Run the tests in the Release configuration. Expect: All tests pass.
dotnet test -c Release --verbosity normal --logger "console;verbosity=detailed"

Length of output: 155


Script:

#!/bin/bash
# Description: Check for recent changes in test files and configuration files

# Search for test files
echo "Test files:"
fd -e cs -e fs --type f --changed-within 2weeks | grep -i test

# Search for configuration files
echo -e "\nConfiguration files:"
fd -e config -e json --type f

# Search for project files
echo -e "\nProject files:"
fd -e csproj -e fsproj --type f

# Display content of project files
echo -e "\nProject file contents:"
fd -e csproj -e fsproj --type f --exec cat {}

Length of output: 1889

.\install.ps1
What things do you need to install the software, and how to install them

```
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add language specification for the code block.

To improve syntax highlighting and readability, please specify the language for the code block.

-```
+```shell
 Give examples
Tools
Markdownlint

19-19: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


```batch
.\install.bat
```
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add language specification for the code block.

To improve syntax highlighting and readability, please specify the language for the code block.

-```
+```shell
 Give the example
Tools
Markdownlint

29-29: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)

Copy link

Infisical secrets check: ✅ No secrets leaked!

Scan results:

11:55PM INF scanning for exposed secrets...
11:55PM INF 4 commits scanned.
11:55PM INF scan completed in 63.4ms
11:55PM INF no leaks found

@guibranco
Copy link
Member Author

@gstraccini rerun failed workflows

Copy link
Contributor

gstraccini bot commented Sep 19, 2024

Rerunning 1 failed workflow on the commit 8b850d36ec20a92f73835efc844e3a5f6d47bb3b! 🔁

Copy link
Contributor

gstraccini bot commented Sep 19, 2024

Rerunning the following workflows:

@guibranco guibranco merged commit bd3a0f1 into main Sep 19, 2024
10 checks passed
@guibranco guibranco deleted the feature/4-feature-implement-image-recognition-using-tensorflow-in-net branch September 19, 2024 23:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
☑️ auto-merge Automatic merging of pull requests (gstraccini-bot) enhancement New feature or request korbit-code-analysis size/L
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEATURE] Implement Image Recognition Using TensorFlow in .NET
2 participants