Skip to content

Commit 033ce77

Browse files
authored
feat: align with ecosystem standards v1.7.0 and add drift-check workflow (#24)
Bumps standards-version signals across all skills, rules, and agent context files from 1.6.3 to 1.7.0 to align with the meta-repo's v1.7 standards generation. Adds .github/workflows/drift-check.yml as a standalone workflow that runs the meta-repo's drift checker against this repo's checkout on every PR and push to main. Standalone rather than integrated into existing CI workflows, matching the pattern established in CFX canary (TMHSDigital/CFX-Developer-Tools#4). Phase 2 Session D rollout. Parallel batch following the validated canary pattern. See TMHSDigital/Developer-Tools-Directory#1 Phase 2 Session D. Signed-off-by: 154358121+TMHSDigital@users.noreply.github.com Made-with: Cursor Signed-off-by: 154358121+TMHSDigital@users.noreply.github.com
1 parent d5a6c2e commit 033ce77

30 files changed

Lines changed: 50 additions & 29 deletions

File tree

.github/workflows/drift-check.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Ecosystem drift check
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
push:
7+
branches: [main]
8+
workflow_dispatch:
9+
10+
jobs:
11+
drift-check:
12+
name: Ecosystem drift check
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: read
16+
steps:
17+
- uses: actions/checkout@v5
18+
- uses: TMHSDigital/Developer-Tools-Directory/.github/actions/drift-check@v1.7
19+
with:
20+
mode: self
21+
format: gh-summary

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- standards-version: 1.6.3 -->
1+
<!-- standards-version: 1.7.0 -->
22

33
# AGENTS.md
44

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- standards-version: 1.6.3 -->
1+
<!-- standards-version: 1.7.0 -->
22

33
# CLAUDE.md
44

rules/buildx-best-practices.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ globs:
77
- "**/docker-compose*.yaml"
88
- "**/compose*.yml"
99
- "**/compose*.yaml"
10-
standards-version: 1.6.3
10+
standards-version: 1.7.0
1111
---
1212

1313
# Buildx Best Practices

rules/compose-scaling.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ globs:
66
- "**/docker-compose*.yaml"
77
- "**/compose*.yml"
88
- "**/compose*.yaml"
9-
standards-version: 1.6.3
9+
standards-version: 1.7.0
1010
---
1111

1212
# Compose Scaling

rules/compose-validation.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ globs:
66
- "**/docker-compose*.yaml"
77
- "**/compose*.yml"
88
- "**/compose*.yaml"
9-
standards-version: 1.6.3
9+
standards-version: 1.7.0
1010
---
1111

1212
# Docker Compose Validation Rules

rules/docker-image-pinning.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ globs:
77
- "**/docker-compose*.yaml"
88
- "**/compose*.yml"
99
- "**/compose*.yaml"
10-
standards-version: 1.6.3
10+
standards-version: 1.7.0
1111
---
1212

1313
# Docker Image Tag Pinning

rules/docker-logging.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ globs:
77
- "**/docker-compose*.yaml"
88
- "**/compose*.yml"
99
- "**/compose*.yaml"
10-
standards-version: 1.6.3
10+
standards-version: 1.7.0
1111
---
1212

1313
# Docker Logging Validation Rules

rules/docker-port-conflicts.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ globs:
77
- "**/compose*.yml"
88
- "**/compose*.yaml"
99
- "**/Dockerfile*"
10-
standards-version: 1.6.3
10+
standards-version: 1.7.0
1111
---
1212

1313
# Docker Port Conflict Detection

rules/docker-resource-limits.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ globs:
88
- "**/compose*.yaml"
99
- "**/Dockerfile*"
1010
- "**/*docker*"
11-
standards-version: 1.6.3
11+
standards-version: 1.7.0
1212
---
1313

1414
# Docker Resource Limits

0 commit comments

Comments
 (0)