Skip to content

Commit d9e854e

Browse files
committed
Fix sources schema version, bump to 0.5.0, disable CI harness
- Sources schema corrected from 1.0.0 to 0.1.0 (stale v3 carry-over) - VERSION bumped to 0.5.0 - CI and release harness tests commented out pending reporails-cli 0.5.0
1 parent e254080 commit d9e854e

5 files changed

Lines changed: 22 additions & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515

16-
- name: Build test image
17-
run: docker build -t reporails-test runtime/
18-
19-
- name: Run test harness
20-
run: |
21-
docker run --rm \
22-
-v ${{ github.workspace }}:/rules:ro \
23-
reporails-test
16+
# TODO: Re-enable when reporails-cli 0.5.0 is published on PyPI
17+
# - name: Build test image
18+
# run: docker build -t reporails-test runtime/
19+
#
20+
# - name: Run test harness
21+
# run: |
22+
# docker run --rm \
23+
# -v ${{ github.workspace }}:/rules:ro \
24+
# reporails-test

.github/workflows/release.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,15 @@ jobs:
4040
steps:
4141
- uses: actions/checkout@v4
4242

43-
- name: Build test image
44-
run: docker build -t reporails-test runtime/
45-
46-
- name: Run test harness
47-
run: |
48-
docker run --rm \
49-
-v ${{ github.workspace }}:/rules:ro \
50-
reporails-test
43+
# TODO: Re-enable when reporails-cli 0.5.0 is published on PyPI
44+
# - name: Build test image
45+
# run: docker build -t reporails-test runtime/
46+
#
47+
# - name: Run test harness
48+
# run: |
49+
# docker run --rm \
50+
# -v ${{ github.workspace }}:/rules:ro \
51+
# reporails-test
5152

5253
- name: Validate schemas have versions
5354
run: |

UNRELEASED.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727

2828
## Fixed
2929

30+
- [SCHEMAS]: Sources schema version corrected from `1.0.0` to `0.1.0` (inherited stale `v3` from pre-semver era)
31+
- [CI]: Commented out test harness in CI and release workflows until `reporails-cli` 0.5.0 is published
3032
- [AGENTS]: Claude config exclude coordinate corrected from `CORE:G:0001` to `CORE:C:0026`
3133
- [SCHEMAS]: Stale check ID validation rule text corrected to `{NAMESPACE}.{CATEGORY}.{SLOT}.{descriptive-name}`
3234
- [META]: Replaced all "OpenGrep" references with "regex" / "pattern matching"; runtime migrated to reporails-cli regex engine

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.1
1+
0.5.0

schemas/sources.schema.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Public source registry schema
22
# Format: flat YAML list of source entries
33
# Location: docs/sources.yml (in each package repo)
4-
version: "1.0.0"
4+
version: "0.1.0"
55

66
format: list
77

0 commit comments

Comments
 (0)