From 41d6470e4aa137ee1fab2a106a5926f387497ba4 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Fri, 27 Feb 2026 10:39:37 -0500 Subject: [PATCH] Fix docs workflow: add auto-docs label, remove version info --- .github/workflows/update-docs.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/update-docs.yml b/.github/workflows/update-docs.yml index 03323e87f..27453e74e 100644 --- a/.github/workflows/update-docs.yml +++ b/.github/workflows/update-docs.yml @@ -44,12 +44,6 @@ jobs: token: ${{ secrets.DOCS_SYNC_TOKEN }} path: _docs - - name: Get version info - id: version - run: | - echo "release=$(git describe --tags --abbrev=0 2>/dev/null || echo 'unknown')" >> "$GITHUB_OUTPUT" - echo "dev=$(git describe --tags 2>/dev/null || echo 'unknown')" >> "$GITHUB_OUTPUT" - - name: Resolve PR number id: pr run: | @@ -74,7 +68,6 @@ jobs: 1. Read the skill instructions at `.claude/skills/update-docs/SKILL.md` 2. Read the source-to-doc mapping at `.claude/skills/update-docs/SOURCE_DOC_MAPPING.md` 3. The docs repository is checked out at `./_docs/` - 4. Current pipecat version: ${{ steps.version.outputs.release }} (release), ${{ steps.version.outputs.dev }} (dev) ## Get the diff @@ -119,12 +112,11 @@ jobs: git push -u origin docs/pr-${{ steps.pr.outputs.number }} GH_TOKEN=$DOCS_SYNC_TOKEN gh pr create \ --repo pipecat-ai/docs \ + --label auto-docs \ --title "docs: update for pipecat PR #${{ steps.pr.outputs.number }}" \ --body "$(cat <<'BODY' Automated documentation update for [pipecat PR #${{ steps.pr.outputs.number }}](https://github.com/pipecat-ai/pipecat/pull/${{ steps.pr.outputs.number }}). - Pipecat version: ${{ steps.version.outputs.release }} (${{ steps.version.outputs.dev }}) - ## Changes