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

refactor #17

Closed
wants to merge 2 commits into from
Closed

refactor #17

wants to merge 2 commits into from

Conversation

ravilushqa
Copy link
Owner

@ravilushqa ravilushqa commented May 7, 2023

Description

This pull request includes various refactorings and updates to the project. It adds a GitHub action for golangci-lint, updates dependencies, adds new make targets, and refactors code to use interfaces. It also adds unit tests and updates package names for better readability and consistency.

Changes

  • Added a GitHub action for golangci-lint that runs on push events for tags starting with "v" and branches "master" and "main", as well as pull requests with read access to contents. The action uses Go version 1.19 and golangci-lint version 1.52, with optional arguments for working directory and only showing new issues for pull requests. Caching functionality can also be disabled or skipped for specific directories.
  • Added "bin" and ".idea" directories to the project's .gitignore file.
  • Added a configuration file for golangci-lint, enabling specific linters and excluding certain rules for test files. It also sets specific settings for the misspell and goimports linters.
  • Added a set of make targets to simplify development. The init-tools target installs the required tools for development. The lint target runs golangci-lint to check for linting errors. The test target runs go test with race detection. The test-coverage target runs go test with coverage. The precommit target runs lint and test. Finally, the help target displays a list of available targets.
  • Removed unnecessary code related to GitHub and OpenAI tokens, owner, repo, and pull request number. Also added a test mode flag.
  • Updated the code to include a new package "review" which generates comments from the diff and pushes them to the pull request. Added new options for GitHub token, OpenAI token, owner, repo, and pull request number. Also added a test mode to print the generated comments without pushing them to the pull request.
  • Added new indirect dependencies to the project:
    • github.com/stretchr/testify v1.8.2
    • github.com/davecgh/go-spew v1.1.1
    • github.com/pmezard/go-difflib v1.0.0
    • github.com/stretchr/objx v0.5.0
    • gopkg.in/yaml.v3 v3.0.1
  • Updated the project's dependencies to include the newly added indirect dependencies.
  • Updated the constant name from ticketUrlFormat to ticketURLFormat for consistency and readability. Also updated the GenerateJiraTicketURL function to use the updated constant name.
  • Added a new embedded file "prompts/review" to replace the previous "prompt-review.txt" file. This change was made to improve the organization of embedded files in the project. No functional changes were made to the code.
  • Refactored the code to use interfaces for PullRequestUpdater and Completer. Added GenerateCommentsFromDiff function to generate comments from diff and PushComments function to push comments to pull request. Removed ghClient import and updated package name to review.
  • Added unit tests for GenerateCommentsFromDiff and PushComments functions. Also added MockCompleter and MockPullRequestUpdater structs for mocking dependencies.
  • Changed package name from "main" to "review" to better reflect the purpose of the code. No other changes were made.
  • Refactored package name from "main" to "review" to better reflect the purpose of the code. No changes were made to the functionality of the code.
  • Added module github.com/ravilushqa/gpt-pullrequest-updater/tools and updated dependencies with their respective versions.
  • Added support for golangci-lint in the tools package. This patch includes the necessary import and build commands to enable golangci-lint in the project.

@ravilushqa ravilushqa self-assigned this May 7, 2023
@ravilushqa ravilushqa closed this May 7, 2023
@ravilushqa ravilushqa deleted the refactor branch May 22, 2023 12:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant