feat: automate repository with GitHub Actions, Docker devcontainer, and modern MCP setup#3
Merged
bjoernbethge merged 3 commits intomainfrom Jan 15, 2026
Conversation
…ker setup Co-authored-by: bjoernbethge <8515720+bjoernbethge@users.noreply.github.com>
Co-authored-by: bjoernbethge <8515720+bjoernbethge@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Automate repository with important actions workflow
feat: automate repository with GitHub Actions, Docker devcontainer, and modern MCP setup
Jan 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds best practice GitHub automation (Semgrep, CodeQL, CI, Dependabot), Docker devcontainer with local services (Ollama, SearXNG, SurrealDB), and migrates from JIRA/Linear to GitHub Issues for ticket management.
GitHub Actions
semgrep.yml- SAST security scanning (weekly + on PRs)ci.yml- Lint, typecheck, test, build pipelinecodeql.yml- Semantic code analysisdependabot.yml- Automated dependency updates for npm and actionsDevContainer & Docker
.devcontainer/devcontainer.json- VS Code container with Node 20, Docker-in-Docker, Copilot extensionsdocker-compose.dev.yml- Local services:MCP Configuration
Removed: JIRA, Linear, Notion, Postgres
Added:
{ "serena": { "command": "uvx", "args": ["--from", "serena-agent", "serena"] }, "context7": { "command": "npx", "args": ["-y", "@upstash/context7-mcp"] }, "surrealdb": { "command": "npx", "args": ["-y", "surrealdb-mcp"] }, "searxng": { "command": "npx", "args": ["-y", "@anthropic/mcp-web-search"] }, "ollama": { "command": "npx", "args": ["-y", "ollama-mcp"] } }Ticket Workflow
/ticketcommand now uses GitHub Issues:Supporting Files
.env.example- Environment configuration template.github/copilot-instructions.md- Copilot project guidelinesOriginal prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.