Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
294 changes: 0 additions & 294 deletions .github/scripts/check-repo-settings.ts

This file was deleted.

5 changes: 4 additions & 1 deletion .github/workflows/check-repo-settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,12 @@ jobs:
- name: Install dependencies
run: bun install --frozen-lockfile

- name: Build workflows app
run: bunx nx build workflows

- name: Run repository settings check
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO_OWNER: ${{ github.repository_owner }}
REPO_NAME: ${{ github.event.repository.name }}
run: bun run check:repo-settings
run: node dist/apps/workflows/apps/workflows/src/scripts/check-repo-settings/index.js
25 changes: 20 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ The shared documentation builder:
- Is pulled by plugin mirror repos during GitHub Pages deployment
- Has independent versioning (tagged as `docs-builder@v1.0.0`)

### Workflows App

The workflows app contains automated CI/CD scripts and utilities:

- Lives in `apps/workflows/`
- Built with Bun + TypeScript (strict mode)
- Modular architecture with comprehensive test coverage
- Used by GitHub Actions workflows for repository automation
- See [Workflows App Documentation](apps/workflows/README.md) for details

## Quick Start

```bash
Expand Down Expand Up @@ -94,11 +104,16 @@ All development happens in this monorepo. Mirror repos are read-only distributio
```
opencode-plugins/
├── apps/
│ └── docs-builder/ # Shared Astro documentation builder
│ ├── src/ # Astro components, styles
│ ├── astro.config.mjs # Astro configuration
│ ├── package.json # Astro dependencies
│ └── transform-docs.js # Doc transformation scripts
│ ├── docs-builder/ # Shared Astro documentation builder
│ │ ├── src/ # Astro components, styles
│ │ ├── astro.config.mjs # Astro configuration
│ │ ├── package.json # Astro dependencies
│ │ └── transform-docs.js # Doc transformation scripts
│ └── workflows/ # CI/CD automation scripts
│ ├── src/ # TypeScript source
│ │ ├── scripts/ # Workflow scripts
│ │ └── utils/ # Shared utilities
│ └── README.md # Workflows documentation
├── packages/
│ ├── opencode-warcraft-notification/ # Example plugin (reference template)
│ │ ├── docs/ # Plugin-specific markdown docs
Expand Down
5 changes: 5 additions & 0 deletions apps/workflows/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
dist
node_modules
coverage
*.log
.DS_Store
Loading
Loading