Skip to content
Open
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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
webui:
name: WebUI Lint & Typecheck
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false || github.event_name != 'pull_request'
defaults:
run:
working-directory: webui
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/osv-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions:

jobs:
scan-pr:
if: github.event_name == 'pull_request' || github.event_name == 'merge_group'
if: (github.event_name == 'pull_request' && github.event.pull_request.draft == false) || github.event_name == 'merge_group'
uses: google/osv-scanner-action/.github/workflows/[email protected]

scan-scheduled:
Expand Down
39 changes: 39 additions & 0 deletions core/artefacts.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"items": [
{
"id": "backend",
"label": "SmartEM Backend",
"url": "https://github.com/DiamondLightSource/smartem-decisions/pkgs/container/smartem-decisions",
"description": "Docker container image of SmartEM Backend services for use in k8s deploys",
"command": "docker pull ghcr.io/diamondlightsource/smartem-decisions:latest"
},
{
"id": "agent",
"label": "SmartEM Agent",
"url": "https://github.com/DiamondLightSource/smartem-decisions/actions/workflows/build_win_smartem_agent.yml",
"description": "SmartEM Agent packaged as a Windows 10 executable (download from workflow artifacts)",
"command": ""
},
{
"id": "frontend",
"label": "SmartEM Frontend",
"url": "#",
"description": "SmartEM Web UI - deployed via backend container, no standalone bundle published",
"command": ""
},
{
"id": "workspace",
"label": "SmartEM Dev Workspace",
"url": "https://pypi.org/project/smartem-workspace/",
"description": "CLI tool to scaffold and manage a local development environment",
"command": "uvx smartem-workspace --help"
},
{
"id": "fsrecorder",
"label": "FSRecorder Util",
"url": "https://github.com/DiamondLightSource/smartem-devtools/actions/workflows/build_win_fsrecorder.yml",
"description": "FSRecorder Utility packaged as a Windows 10 executable (download from workflow artifacts)",
"command": ""
}
]
}
50 changes: 0 additions & 50 deletions core/claude-code-config.ts

This file was deleted.

36 changes: 0 additions & 36 deletions core/dev-requirements.ts

This file was deleted.

92 changes: 0 additions & 92 deletions core/github-labels-config.ts

This file was deleted.

33 changes: 33 additions & 0 deletions core/github-labels.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"owner": "DiamondLightSource",
"typesOfWork": [
{ "name": "documentation", "description": "Improvements or additions to project documentation", "color": "0d6d6e" },
{ "name": "testing", "description": "Writing, updating, or fixing automated tests", "color": "2da44e" },
{ "name": "bugfixing", "description": "Fixing defects or unexpected behavior in existing code", "color": "cf222e" },
{ "name": "development", "description": "New features or functionality implementation", "color": "8250df" },
{ "name": "refactoring", "description": "Code restructuring without changing external behavior", "color": "bc4c00" },
{ "name": "research", "description": "Investigation, spikes, or proof-of-concept work", "color": "0598bd" },
{ "name": "devops", "description": "CI/CD, deployment, infrastructure, or tooling work", "color": "57606a" },
{ "name": "security", "description": "Security fixes, audits, or vulnerability remediation", "color": "a40e26" },
{ "name": "admin", "description": "Project maintenance, dependency updates, or housekeeping", "color": "7c4a03" },
{ "name": "enhancement", "description": "Minor improvements to existing functionality", "color": "1b7c83" }
],
"systemComponents": [
{ "name": "smartem-backend", "description": "Core backend services, messaging, and persistence layer", "color": "0a3069" },
{ "name": "smartem-backend:db", "description": "Database schema, migrations, and data layer changes", "color": "0550ae" },
{ "name": "smartem-backend:api", "description": "REST API endpoints and HTTP interface changes", "color": "218bff" },
{ "name": "smartem-agent", "description": "EPU workstation agent for microscope integration", "color": "9a6700" },
{ "name": "smartem-frontend", "description": "User-facing web UI for acquisition sessions and ML decisions", "color": "1a7f37" },
{ "name": "smartem-aria-connector", "description": "ARIA deposition integration via FandanGO plugin", "color": "6639ba" },
{ "name": "smartem-devtools", "description": "Developer tooling, documentation, and workspace configuration", "color": "99154b" },
{ "name": "smartem-devtools:webui", "description": "Developer dashboard web interface", "color": "bf3989" },
{ "name": "smartem-devtools:claude", "description": "Claude Code configuration, skills, and prompts", "color": "db61a2" },
{ "name": "smartem-devtools:e2e-test", "description": "End-to-end testing infrastructure and scenarios", "color": "f09bc8" }
],
"repos": [
{ "repo": "smartem-devtools", "labels": "all" },
{ "repo": "smartem-decisions", "labels": "types-only" },
{ "repo": "smartem-frontend", "labels": "types-only" },
{ "repo": "fandanGO-cryoem-dls", "labels": "types-only" }
]
}
Loading