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

Revert 21 revert 18 refactor #23

Merged
merged 3 commits into from
May 7, 2023
Merged

Conversation

ravilushqa
Copy link
Owner

@ravilushqa ravilushqa commented May 7, 2023

Description

This pull request includes various changes to improve the functionality and maintainability of the gpt-pullrequest-updater tool. The changes include adding a GitHub action for golangci-lint, updating the build process to use make, adding new directories to the project, adding a configuration file for golangci-lint, adding new dependencies, updating constant names, adding retry logic for ChatCompletion function, refactoring the code to use interfaces, adding unit tests and mock structs, changing package names, and adding support for golangci-lint tool.

Changes

  • Added a GitHub action for golangci-lint that runs on push events with tags starting with "v" and on the master and main branches, as well as on 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. Caching functionality can also be disabled or skipped for specific directories. (File: .github/workflows/golangci-lint.yml)
  • Updated build process to use make instead of individual go build commands. Also updated file paths for description and review commands to reflect new binary location. (File: .github/workflows/gpt_pullrequest_updater.yml)
  • Added "bin" and ".idea" directories to the project. (File: .gitignore)
  • 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. (File: .golangci.yaml)
  • Added build, init-tools, lint, test, test-coverage, precommit, and help targets to the Makefile. The init-tools target installs the necessary tools for development, lint runs golangci-lint, test runs go test, test-coverage runs go test with coverage, and precommit runs lint and test. The help target displays the available targets and their descriptions. (File: Makefile)
  • Updated build process to use make instead of individual go build commands. Also updated file paths for description and review executables to be in the bin directory. (File: README.md)
  • Removed unused code related to GitHub and OpenAI tokens, owner, repo, PR number, and test mode. (File: cmd/review/config.go)
  • Updated the code to include options for GitHub token, OpenAI token, owner, repo, and PR number. Added a test mode to print comments without creating them. Refactored the code to use the review package for generating and pushing comments to the pull request. (File: cmd/review/main.go)
  • Added new indirect dependencies to the project. (File: go.mod)
  • Added dependencies. (File: go.sum)
  • Updated the constant name from ticketUrlFormat to ticketURLFormat and modified the GenerateJiraTicketURL function to use the updated constant name. (File: jira/jira.go)
  • Added retry logic for ChatCompletion function in case of error. If an error occurs, the function will wait for 1 minute and then retry once. If the retry is unsuccessful, an error message will be returned. (File: openai/openai.go)
  • Refactored the code to use interfaces for PullRequestUpdater and Completer. Added support for file-level issues and skipping them. Renamed the package to "review". The function "processFiles" is now "GenerateCommentsFromDiff". The function "createComments" is now "PushComments". (File: review/review.go)
  • Added unit tests for GenerateCommentsFromDiff and PushComments functions. Also added mock structs for MockCompleter and MockPullRequestUpdater to facilitate testing. The GenerateCommentsFromDiff function takes a diff and generates comments based on the review result obtained from an external service. The PushComments function takes the generated comments and pushes them to the pull request on GitHub. (File: review/review_test.go)
  • Changed package name from "main" to "review" to better reflect the purpose of the code. No other changes made. (File: review/utils.go)
  • Refactored the package name from "main" to "review" to better reflect the purpose of the code. No changes were made to the functionality of the code. (File: review/utils_test.go)
  • Added module github.com/ravilushqa/gpt-pullrequest-updater/tools and updated dependencies to their latest versions. (File: tools/go.mod)
  • Updated dependencies. (File: tools/go.sum)
  • Added support for golangci-lint tool in the project. This patch includes the necessary code changes to import the tool and generate a build command for it. The tool can now be easily accessed and used for linting purposes. (File: tools/tools.go)

@ravilushqa ravilushqa merged commit f5f869e into main May 7, 2023
@ravilushqa ravilushqa deleted the revert-21-revert-18-refactor branch May 22, 2023 12:17
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