Skip to content

Commit f4f9bc4

Browse files
ChengaDevclaude
andcommitted
docs: fix stale names and action refs for v0.1.0 release
- rename package opsagent-mcp → opsagent in pyproject.toml - release.yml: OpsAgent-MCP → OpsAgent in release title - examples.md + README: @v1 → @v0.1.0 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent ee984ee commit f4f9bc4

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ jobs:
9595
- name: Create Release
9696
uses: softprops/action-gh-release@v2
9797
with:
98-
name: OpsAgent-MCP ${{ github.ref_name }}
98+
name: OpsAgent ${{ github.ref_name }}
9999
body: |
100-
## OpsAgent-MCP ${{ github.ref_name }}
100+
## OpsAgent ${{ github.ref_name }}
101101
102102
AI-powered CI/CD failure first responder — single executable, no Python required.
103103

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ pip install -e .
109109
110110
- name: Run OpsAgent RCA
111111
if: failure()
112-
uses: ChengaDev/opsagent@v1
112+
uses: ChengaDev/opsagent@v0.1.0
113113
with:
114114
log-path: ${{ runner.temp }}/test.log
115115
workspace: ${{ github.workspace }}

docs/examples.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
2525
- name: Run OpsAgent RCA
2626
if: failure()
27-
uses: ChengaDev/opsagent@v1
27+
uses: ChengaDev/opsagent@v0.1.0
2828
with:
2929
log-path: ${{ runner.temp }}/pytest.log
3030
workspace: ${{ github.workspace }}
@@ -58,7 +58,7 @@ jobs:
5858
5959
- name: Run OpsAgent RCA
6060
if: failure()
61-
uses: ChengaDev/opsagent@v1
61+
uses: ChengaDev/opsagent@v0.1.0
6262
with:
6363
log-path: ${{ runner.temp }}/test.log
6464
workspace: ${{ github.workspace }}
@@ -72,7 +72,7 @@ jobs:
7272
```yaml
7373
- name: Run OpsAgent RCA
7474
if: failure()
75-
uses: ChengaDev/opsagent@v1
75+
uses: ChengaDev/opsagent@v0.1.0
7676
with:
7777
log-path: ${{ runner.temp }}/test.log
7878
workspace: ${{ github.workspace }}
@@ -88,7 +88,7 @@ OpsAgent posts the full RCA as a comment on the pull request that triggered the
8888
```yaml
8989
- name: Run OpsAgent RCA
9090
if: failure()
91-
uses: ChengaDev/opsagent@v1
91+
uses: ChengaDev/opsagent@v0.1.0
9292
with:
9393
log-path: ${{ runner.temp }}/test.log
9494
workspace: ${{ github.workspace }}
@@ -109,7 +109,7 @@ OpsAgent posts the full RCA as a comment on the pull request that triggered the
109109
```yaml
110110
- name: Run OpsAgent RCA
111111
if: failure()
112-
uses: ChengaDev/opsagent@v1
112+
uses: ChengaDev/opsagent@v0.1.0
113113
with:
114114
log-path: ${{ runner.temp }}/test.log
115115
workspace: ${{ github.workspace }}
@@ -125,7 +125,7 @@ OpsAgent posts the full RCA as a comment on the pull request that triggered the
125125
# Google Gemini
126126
- name: Run OpsAgent RCA
127127
if: failure()
128-
uses: ChengaDev/opsagent@v1
128+
uses: ChengaDev/opsagent@v0.1.0
129129
with:
130130
log-path: ${{ runner.temp }}/test.log
131131
workspace: ${{ github.workspace }}
@@ -138,7 +138,7 @@ OpsAgent posts the full RCA as a comment on the pull request that triggered the
138138
# OpenAI
139139
- name: Run OpsAgent RCA
140140
if: failure()
141-
uses: ChengaDev/opsagent@v1
141+
uses: ChengaDev/opsagent@v0.1.0
142142
with:
143143
log-path: ${{ runner.temp }}/test.log
144144
workspace: ${{ github.workspace }}
@@ -160,7 +160,7 @@ OpsAgent posts the full RCA as a comment on the pull request that triggered the
160160
161161
- name: Run OpsAgent RCA
162162
if: failure()
163-
uses: ChengaDev/opsagent@v1
163+
uses: ChengaDev/opsagent@v0.1.0
164164
with:
165165
log-path: ${{ runner.temp }}/deploy.log
166166
workspace: ${{ github.workspace }}
@@ -180,7 +180,7 @@ OpsAgent posts the full RCA as a comment on the pull request that triggered the
180180
181181
- name: Run OpsAgent RCA
182182
if: failure()
183-
uses: ChengaDev/opsagent@v1
183+
uses: ChengaDev/opsagent@v0.1.0
184184
with:
185185
log-path: ${{ runner.temp }}/tf.log
186186
workspace: ${{ github.workspace }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["hatchling"]
33
build-backend = "hatchling.build"
44

55
[project]
6-
name = "opsagent-mcp"
6+
name = "opsagent"
77
version = "0.1.0"
88
description = "AI-powered CI/CD failure first-responder using LangGraph + MCP"
99
requires-python = ">=3.10"

0 commit comments

Comments
 (0)