Skip to content

Commit 8ed1f3e

Browse files
authored
Merge branch 'main' into json-lint
2 parents 4973585 + 67e480d commit 8ed1f3e

9 files changed

Lines changed: 57 additions & 9 deletions

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# For syntax help see
44
# <https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners#codeowners-syntax>
55

6-
* @googleapis/senseai-eco
6+
* @gemini-cli-extensions/senseai-eco @gemini-cli-extensions/cloud-sql-sqlserver-maintainers
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Copyright 2025 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# https://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
name: Lint Markdown
16+
17+
on:
18+
pull_request:
19+
branches: [ main ]
20+
21+
jobs:
22+
link-check:
23+
name: Run link check
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: Check out code
27+
uses: actions/checkout@v4
28+
29+
- name: Link Checker
30+
uses: lycheeverse/lychee-action@v2.0.2
31+
with:
32+
# There is no security token. So, it would fail on any links which aren't public.
33+
args: "--verbose --no-progress **/*.md"

.github/workflows/package-and-upload-assets.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ jobs:
6666
6767
echo "Downloading binary from: ${DOWNLOAD_URL}"
6868
curl -L --fail -o "${SOURCE_BINARY}" "${DOWNLOAD_URL}"
69-
69+
70+
chmod +x ${SOURCE_BINARY}
71+
7072
echo "Binary downloaded and prepared."
7173
ls -l
7274
@@ -134,4 +136,4 @@ jobs:
134136
run: |
135137
gh release upload \
136138
${{ github.event.release.tag_name }} \
137-
release-archives/*/*
139+
release-archives/*/*

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.0.0"
2+
".": "0.1.0"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-09-21)
4+
5+
6+
### Features
7+
8+
* Add Cloud SQL for SQL Server Observability Extension ([#4](https://github.com/gemini-cli-extensions/cloud-sql-sqlserver-observability/issues/4)) ([1884674](https://github.com/gemini-cli-extensions/cloud-sql-sqlserver-observability/commit/188467457e07904afe5495a32f788f726293def3))

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# Gemini CLI Extension - Cloud SQL for SQL Server Observability
22

3+
> [!NOTE]
4+
> This extension is currently in beta (pre-v1.0), and may see breaking changes until the first stable release (v1.0).
5+
36
This Gemini CLI extension provides a set of tools to interact with [Cloud SQL for SQL Server](https://cloud.google.com/sql/docs/sqlserver) monitoring metrics. It allows you to fetch a wide range of database metrics, enabling comprehensive monitoring of database performance and health directly from the [Gemini CLI](https://google-gemini.github.io/gemini-cli/), using natural language prompts.
47

5-
Learn more about [Gemini CLI Extensions](https://github.com/google-gemini/gemini-cli/blob/main/docs/extension.md)
8+
Learn more about [Gemini CLI Extensions](https://github.com/google-gemini/gemini-cli/blob/main/docs/extension.md).
69

710
## Why Use the Cloud SQL for SQL Server Observability Extension?
811

@@ -13,7 +16,7 @@ Learn more about [Gemini CLI Extensions](https://github.com/google-gemini/gemini
1316

1417
Before you begin, ensure you have the following:
1518

16-
* [Gemini CLI](https://github.com/google-gemini/gemini-cli) installed.
19+
* [Gemini CLI](https://github.com/google-gemini/gemini-cli) installed with version **+v0.6.0**.
1720
* A Google Cloud project with the **Cloud Monitoring API** enabled.
1821
* IAM Permissions
1922
* Monitoring Viewer (`roles/monitoring.viewer`)
@@ -23,12 +26,12 @@ Before you begin, ensure you have the following:
2326
To install the extension, use the command:
2427

2528
```bash
26-
gemini extensions install github.com/gemini-cli-extensions/cloud-sql-sqlserver-observability
29+
gemini extensions install https://github.com/gemini-cli-extensions/cloud-sql-sqlserver-observability
2730
```
2831

2932
## Configuration
3033

31-
No configuration is required.
34+
Ensure [Application Default Credentials](https://cloud.google.com/docs/authentication/gcloud) are available in your environment.
3235

3336
## Usage Examples
3437

gemini-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cloud-sql-sqlserver-observability",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "Manage and monitor database performance and health for Cloud SQL for SQL Server.",
55
"mcpServers": {
66
"Cloud SQL for SQL Server Observability": {

release-please-config.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"bump-minor-pre-major": true,
33
"bump-patch-for-minor-pre-major": true,
4+
"include-component-in-tag": false,
5+
"include-v-in-tag": false,
46
"changelog-sections": [
57
{
68
"type": "feat",

0 commit comments

Comments
 (0)