From 6b6de042ff80ba6a329ef9d35dd98363f7a7df12 Mon Sep 17 00:00:00 2001 From: Alexa Amundson <118287761+blackboxprogramming@users.noreply.github.com> Date: Mon, 16 Mar 2026 12:22:05 -0500 Subject: [PATCH] =?UTF-8?q?cleanup:=20remove=20unused=20workflow=20?= =?UTF-8?q?=E2=80=94=20Actions=20disabled,=20CI=20runs=20on=20Gitea?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docs-ci-bucketed.yml | 65 -------------------------- 1 file changed, 65 deletions(-) delete mode 100644 .github/workflows/docs-ci-bucketed.yml diff --git a/.github/workflows/docs-ci-bucketed.yml b/.github/workflows/docs-ci-bucketed.yml deleted file mode 100644 index 79aead3..0000000 --- a/.github/workflows/docs-ci-bucketed.yml +++ /dev/null @@ -1,65 +0,0 @@ -name: Docs CI - -on: - pull_request: - paths: - - 'docs/**' - - '*.md' - - 'README.*' - push: - branches: [main] - paths: - - 'docs/**' - - '*.md' - -permissions: - contents: read - -jobs: - lint: - name: Docs Lint - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Markdown lint - uses: nosborn/github-action-markdown-cli@v3.3.0 - with: - files: . - config_file: .markdownlint.json - ignore_files: node_modules/,backend/,agents/ - continue-on-error: true - - - name: Check for broken links - uses: gaurav-nelson/github-action-markdown-link-check@v1 - with: - use-quiet-mode: 'yes' - use-verbose-mode: 'no' - config-file: '.markdown-link-check.json' - continue-on-error: true - - - name: Spell check - uses: rojopolis/spellcheck-github-actions@0.33.1 - with: - config_path: .spellcheck.yml - continue-on-error: true - - - name: Documentation structure check - run: | - echo "Checking documentation structure..." - - # Check for required docs - required_docs=( - "README.md" - "docs/architecture" - "CLAUDE.md" - ) - - for doc in "${required_docs[@]}"; do - if [ ! -e "$doc" ]; then - echo "⚠️ Missing: $doc" - else - echo "✅ Found: $doc" - fi - done