From f54e6b724888a3dda3be67817cc5ba086f6dec0a Mon Sep 17 00:00:00 2001 From: Yuriy Andamasov Date: Sun, 10 May 2026 23:32:08 +0300 Subject: ci: drop leading slash in Context7 libraryName MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Context7's API expects the bare repo identifier 'vyos/vyos-documentation' (verified at https://context7.com/vyos/vyos-documentation), not the leading-slash form. The auto-fired workflow_run cycle after #1950 / #1948 / #1949 merged returned HTTP 404 on all three variants because of the extra slash. Spec: ~/.claude/specs/2026-05-10-context7-github-actions-integration-design.md (spec narrative referenced Codex's round-1 advice to use leading slash; that advice was empirically wrong against the live Context7 API). 🤖 Generated by [robots](https://vyos.io) --- .github/workflows/context7-refresh.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/context7-refresh.yml b/.github/workflows/context7-refresh.yml index e7910671..09ddeae5 100644 --- a/.github/workflows/context7-refresh.yml +++ b/.github/workflows/context7-refresh.yml @@ -74,5 +74,5 @@ jobs: "https://context7.com/api/v1/refresh" \ -H "Authorization: Bearer $CONTEXT7_API_KEY" \ -H "Content-Type: application/json" \ - -d "$(jq -nc --arg lib "/${{ github.repository }}" --arg br "$VARIANT" \ + -d "$(jq -nc --arg lib "${{ github.repository }}" --arg br "$VARIANT" \ '{libraryName: $lib, branch: $br}')" -- cgit v1.2.3