-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* version bump * add codium AI pr agent * update codium AI pr agent * DUPLO-13650 improve format of tenant missing message * DUPLO-13650 elide err when nil in fatal messages * Update CHANGELOG.md * DUPLO docs: add Homebrew installation section * Update CHANGELOG.md * DUPLO-26089: use a predetermined localPort (#29) * Allowing to choose port in interactive auth * Fixing port usage --------- Co-authored-by: notofir <[email protected]> * DUPLO-26089 Update versions in workflows * DUPLO-26089 update go.mod to 1.23 * DUPLO-26089 fix a few lint issues * DUPLO-26089 fix two more lint issues --------- Co-authored-by: duplo-bot <[email protected]> Co-authored-by: Joe Khoobyar <[email protected]> Co-authored-by: David Wolfe <[email protected]> Co-authored-by: codiumai-pr-agent-pro[bot] <151058649+codiumai-pr-agent-pro[bot]@users.noreply.github.com> Co-authored-by: Joe Khoobyar <[email protected]> Co-authored-by: Matheus Bafutto <[email protected]> Co-authored-by: Zafar Abbas <[email protected]> Co-authored-by: notofir <[email protected]> Co-authored-by: sp1676 <[email protected]>
- Loading branch information
1 parent
2bfae75
commit 08dd6f4
Showing
16 changed files
with
90 additions
and
41 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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,23 @@ | ||
# See: https://github.com/Codium-ai/pr-agent/blob/main/Usage.md#working-with-github-app | ||
# See: https://github.com/Codium-ai/pr-agent/blob/main/pr_agent/settings/configuration.toml | ||
|
||
[pr_reviewer] | ||
enable_review_labels_effort = true | ||
|
||
[pr_description] | ||
add_original_user_description = true | ||
keep_original_user_title = true | ||
|
||
[github_app] | ||
handle_pr_actions = ['opened', 'reopened', 'ready_for_review', 'review_requested'] | ||
pr_commands = [ | ||
"/describe", | ||
"/review", | ||
"/update_changelog --pr_update_changelog.push_changelog_changes=true" | ||
] | ||
handle_push_trigger = true | ||
push_commands = [ | ||
"/describe", | ||
"/review -i --pr_reviewer.remove_previous_review_comment=true", | ||
"/update_changelog" | ||
] |
This file contains 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,10 @@ | ||
## 2024-02-14 | ||
|
||
### Added | ||
- Introduced a new section in the README for Homebrew installation, enhancing the accessibility of the tool for macOS users. | ||
|
||
## 2024-01-24 | ||
|
||
### Fixed | ||
- Improved error message format when a tenant is missing or not allowed. | ||
- Prevented appending a nil error object to fatal error messages. |
This file contains 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
VERSION=0.5.5 | ||
VERSION=0.5.6 | ||
|
||
default: all | ||
|
||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/duplocloud/duplo-jit | ||
|
||
go 1.21 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2 v1.23.5 | ||
|
This file contains 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
This file contains 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
This file contains 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.