From 06254a76177a3be15fff9a0ec2e3611115bdf341 Mon Sep 17 00:00:00 2001 From: Ambient Code Bot Date: Wed, 22 Apr 2026 11:34:51 -0400 Subject: [PATCH] fix(ci): use correct label name in screenshots workflow The workflow used --label "docs" but the repo label is "documentation". This caused the scheduled screenshot PR creation to fail with "could not add label: 'docs' not found". Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/screenshots.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/screenshots.yml b/.github/workflows/screenshots.yml index 2ce818151..b316e4b3a 100644 --- a/.github/workflows/screenshots.yml +++ b/.github/workflows/screenshots.yml @@ -111,7 +111,7 @@ jobs: gh pr create \ --title "docs: update screenshots $(date +%Y-%m-%d)" \ --body "Automated daily screenshot update. Review changed PNGs in the Files tab." \ - --label "docs,automated" + --label "documentation,automated" - name: Upload screenshots as artifact if: always()