Skip to content

Commit 5e2b6f2

Browse files
roli-lpciclaude
andcommitted
Fix stale GitHub URLs after repo rename from pygate to quick-gate-python
Replace all 18 occurrences of roli-lpci/pygate with roli-lpci/quick-gate-python across README.md, CHANGELOG.md, CONTRIBUTING.md, pyproject.toml, and .github/workflows/example-usage.yml. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7cd8837 commit 5e2b6f2

5 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/example-usage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
fetch-depth: 0 # Required for changed file detection
2020

21-
- uses: roli-lpci/pygate/.github/actions/pygate@main
21+
- uses: roli-lpci/quick-gate-python/.github/actions/pygate@main
2222
with:
2323
mode: canary # or "full" to include tests
2424
repair: "true" # attempt auto-repair on failures

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2525
- Composite GitHub Action for CI integration
2626
- Structured artifacts: failures.json, run-metadata.json, agent-brief.json/md, repair-report.json, escalation.json
2727

28-
[Unreleased]: https://github.com/roli-lpci/pygate/compare/v0.1.0...HEAD
29-
[0.1.0]: https://github.com/roli-lpci/pygate/releases/tag/v0.1.0
28+
[Unreleased]: https://github.com/roli-lpci/quick-gate-python/compare/v0.1.0...HEAD
29+
[0.1.0]: https://github.com/roli-lpci/quick-gate-python/releases/tag/v0.1.0

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Thank you for your interest in contributing to PyGate! This guide will help you
1414
### Install
1515

1616
```bash
17-
git clone https://github.com/roli-lpci/pygate.git
17+
git clone https://github.com/roli-lpci/quick-gate-python.git
1818
cd pygate
1919
python -m venv .venv
2020
source .venv/bin/activate
@@ -96,8 +96,8 @@ This requires `pygate`, `ruff`, `pyright`, and `pytest` (with `pytest-json-repor
9696

9797
## Reporting Issues
9898

99-
- Use the [bug report template](https://github.com/roli-lpci/pygate/issues/new?template=bug_report.yml) for bugs.
100-
- Use the [feature request template](https://github.com/roli-lpci/pygate/issues/new?template=feature_request.yml) for ideas.
99+
- Use the [bug report template](https://github.com/roli-lpci/quick-gate-python/issues/new?template=bug_report.yml) for bugs.
100+
- Use the [feature request template](https://github.com/roli-lpci/quick-gate-python/issues/new?template=feature_request.yml) for ideas.
101101

102102
## License
103103

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# PyGate
22

3-
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/roli-lpci/pygate/blob/main/LICENSE)
3+
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/roli-lpci/quick-gate-python/blob/main/LICENSE)
44
[![Python](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://python.org)
5-
[![CI](https://github.com/roli-lpci/pygate/actions/workflows/ci.yml/badge.svg)](https://github.com/roli-lpci/pygate/actions/workflows/ci.yml)
5+
[![CI](https://github.com/roli-lpci/quick-gate-python/actions/workflows/ci.yml/badge.svg)](https://github.com/roli-lpci/quick-gate-python/actions/workflows/ci.yml)
66

77
Deterministic quality gate CLI for Python projects with bounded auto-repair and structured escalation evidence.
88

@@ -100,7 +100,7 @@ All artifacts are written to `.pygate/`:
100100
| `repair-report.json` | Repair attempt history (on success) |
101101
| `escalation.json` | Escalation reason and evidence (on failure) |
102102

103-
JSON Schema files for all artifact types are available in [`schemas/`](https://github.com/roli-lpci/pygate/tree/main/schemas) for downstream validation and code generation. See [`demo/artifacts/`](https://github.com/roli-lpci/pygate/tree/main/demo/artifacts) for sample output.
103+
JSON Schema files for all artifact types are available in [`schemas/`](https://github.com/roli-lpci/quick-gate-python/tree/main/schemas) for downstream validation and code generation. See [`demo/artifacts/`](https://github.com/roli-lpci/quick-gate-python/tree/main/demo/artifacts) for sample output.
104104

105105
## Repair Loop
106106

@@ -172,7 +172,7 @@ PyGate ships with a composite GitHub Action for CI integration:
172172

173173
```yaml
174174
- uses: actions/checkout@v4
175-
- uses: roli-lpci/pygate/.github/actions/pygate@main
175+
- uses: roli-lpci/quick-gate-python/.github/actions/pygate@main
176176
with:
177177
mode: canary # or "full"
178178
repair: "true" # attempt auto-repair on failures
@@ -200,8 +200,8 @@ The action detects changed files from the PR, runs gates, optionally repairs, an
200200

201201
## Contributing
202202

203-
See [CONTRIBUTING.md](https://github.com/roli-lpci/pygate/blob/main/CONTRIBUTING.md) for development setup and guidelines.
203+
See [CONTRIBUTING.md](https://github.com/roli-lpci/quick-gate-python/blob/main/CONTRIBUTING.md) for development setup and guidelines.
204204

205205
## License
206206

207-
[Apache 2.0](https://github.com/roli-lpci/pygate/blob/main/LICENSE)
207+
[Apache 2.0](https://github.com/roli-lpci/quick-gate-python/blob/main/LICENSE)

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ dev = [
4848
pygate = "pygate.cli:main"
4949

5050
[project.urls]
51-
Homepage = "https://github.com/roli-lpci/pygate"
52-
Documentation = "https://github.com/roli-lpci/pygate#readme"
53-
Repository = "https://github.com/roli-lpci/pygate"
54-
Issues = "https://github.com/roli-lpci/pygate/issues"
55-
Changelog = "https://github.com/roli-lpci/pygate/blob/main/CHANGELOG.md"
51+
Homepage = "https://github.com/roli-lpci/quick-gate-python"
52+
Documentation = "https://github.com/roli-lpci/quick-gate-python#readme"
53+
Repository = "https://github.com/roli-lpci/quick-gate-python"
54+
Issues = "https://github.com/roli-lpci/quick-gate-python/issues"
55+
Changelog = "https://github.com/roli-lpci/quick-gate-python/blob/main/CHANGELOG.md"
5656

5757
[tool.hatch.build.targets.sdist]
5858
include = ["src/pygate"]

0 commit comments

Comments
 (0)