diff --git a/.github/workflows/ReviewBuddy.yml b/.github/workflows/ReviewBuddy.yml new file mode 100644 index 0000000..486888f --- /dev/null +++ b/.github/workflows/ReviewBuddy.yml @@ -0,0 +1,17 @@ +name: Review Buddy +on: + pull_request: + types: [opened, synchronize] + issue_comment: + types: [created] +permissions: + pull-requests: write + contents: read +jobs: + review: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: nexoral/ReviewBuddy@main + with: + gemini_api_key: ${{ secrets.GEMINI_API_KEY }} \ No newline at end of file diff --git a/Scripts/installer.sh b/Scripts/installer.sh index 30bc89b..f7ec960 100755 --- a/Scripts/installer.sh +++ b/Scripts/installer.sh @@ -7,7 +7,7 @@ ARCH=$(dpkg --print-architecture) echo "Detected architecture: $ARCH" -VERSION="2.2.7-stable" +VERSION="2.2.8-stable" if [[ "$ARCH" == "amd64" ]]; then PKG="xpack_${VERSION}_amd64.deb" diff --git a/VERSION b/VERSION index af4bd10..24409f5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.2.7-stable +2.2.8-stable diff --git a/src/Core/main.go b/src/Core/main.go index 7e4c150..0ddbc03 100644 --- a/src/Core/main.go +++ b/src/Core/main.go @@ -15,7 +15,7 @@ import ( ) // var VERSION is updated by Scripts/versionController.sh -var VERSION = "2.2.7-stable" +var VERSION = "2.2.8-stable" // readLineRaw reads interactive input from terminal in raw mode, supporting Tab completion func readLineRaw(promptText, defaultVal string) (string, error) { diff --git a/src/base/banner.go b/src/base/banner.go index 4341d8d..43f83f0 100644 --- a/src/base/banner.go +++ b/src/base/banner.go @@ -5,7 +5,7 @@ import ( ) // const Version is kept so external scripts can update it via sed -const Version = "2.2.7-stable" +const Version = "2.2.8-stable" // PrintBanner prints a simple welcome banner. Version may be empty. func PrintBanner(version string) {