Update dev environment and CI configuration for Redmine 7#42
Merged
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #42 +/- ##
========================================
Coverage 88.87% 88.87%
========================================
Files 16 16
Lines 935 935
========================================
Hits 831 831
Misses 104 104 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s development environment and CI tooling to better support newer Redmine versions (notably adding Redmine 7.0-stable to the CI matrix), and adds documentation intended for coding agents and ADR tracking.
Changes:
- Refreshes the devcontainer setup (Dockerfile/docker-compose/devcontainer.json/post-create) and adds a multi-root workspace file under
.devcontainer/. - Expands the GitHub Actions matrix to include Redmine 7.0-stable and updates supported Ruby versions.
- Adds agent guidance docs (
AGENTS.md,CLAUDE.md), ADR index scaffolding (docs/adr/README.md), and Dependabot configuration.
Reviewed changes
Copilot reviewed 14 out of 15 changed files in this pull request and generated 8 comments.
Show a summary per file
| File | Description |
|---|---|
| README.md | Updates stated minimum Redmine version and minor formatting fixes. |
| docs/adr/README.md | Adds initial ADR index scaffolding and naming convention. |
| CLAUDE.md | Adds a pointer file for Claude Code guidance (delegates to AGENTS.md). |
| AGENTS.md | Adds consolidated coding-agent guidance, commands, and architecture notes. |
| .redmine.code-workspace | Removes an obsolete workspace definition. |
| .gitignore | Stops ignoring CLAUDE.md; ignores tmp/* instead. |
| .github/workflows/build.yml | Updates CI matrix to include Redmine 7.0-stable and adjusts Ruby versions/exclusions. |
| .github/dependabot.yml | Adds Dependabot configuration for Bundler and GitHub Actions. |
| .devcontainer/redmine.code-workspace | Adds a devcontainer-specific multi-root workspace and editor settings. |
| .devcontainer/post-create.sh | Adjusts post-create provisioning and DB init flow for multiple adapters. |
| .devcontainer/Dockerfile | Adds MySQL client + installs additional dev tools (uv/Claude Code/opencode/qlty). |
| .devcontainer/docker-compose.yml | Updates default Ruby/Redmine versions, pins DB images, and adds extra services. |
| .devcontainer/devcontainer.json | Simplifies devcontainer config, updates extensions, and postCreate command path. |
| .claude/skills/create-pr/SKILL.md | Adds a Claude skill spec for creating/updating PRs via gh. |
| .claude/settings.json | Adds Claude tool permissions / plugin configuration. |
| ## Requirements | ||
|
|
||
| - **Redmine**: Version 5.1.0 or higher | ||
| - **Redmine**: Version 6.0.0 or higher |
|
|
||
| ## What this is | ||
|
|
||
| A Redmine plugin (`redmine_code_review`) that adds in-browser code review to the repository browser: reviewers annotate diffs/changesets/attachments, and each review is backed by a Redmine `Issue`. Requires Redmine >= 6.0 (see `init.rb`, which pins `requires_redmine`). |
Comment on lines
+23
to
+24
| ruby_version: ["3.1", "3.2", "3.3", "3.4", "4.0"] | ||
| redmine_version: [6.0-stable, 6.1-stable, 7.0-stable, master] |
Comment on lines
+1
to
+13
| version: 2 | ||
| updates: | ||
| - package-ecosystem: "bundler" | ||
| directory: "/" | ||
| target-branch: "develop" | ||
| schedule: | ||
| interval: "weekly" | ||
|
|
||
| - package-ecosystem: "github-actions" | ||
| directory: "/" | ||
| target-branch: "develop" | ||
| schedule: | ||
| interval: "weekly" |
Comment on lines
54
to
57
| MYSQL_ROOT_PASSWORD: root | ||
| MYSQL_USER: redmine | ||
| MYSQL_DB: redmine | ||
| MYSQL_PASSWORD: remine |
Comment on lines
+10
to
+14
| # Install uv (includes uvx) for Serena MCP server | ||
| RUN curl -LsSf https://astral.sh/uv/install.sh | sh | ||
|
|
||
| USER vscode | ||
|
|
|
|
||
| RUN curl -fsSL https://claude.ai/install.sh | bash | ||
| RUN curl -fsSL https://opencode.ai/install | bash | ||
| RUN curl https://qlty.sh | sh |
Comment on lines
43
to
45
| "containerEnv": { | ||
| "PLUGIN_NAME": "${localWorkspaceFolderBasename}" | ||
| }, |
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.
Summary
redmine.code-workspace)build.yml) Ruby/Redmine version matrix to include Redmine 7.0-stableAGENTS.md/CLAUDE.mdfor coding agent guidance, and unignoredCLAUDE.mdin.gitignore(excludingtmp/*instead)docs/adr/README.mdto start tracking ADRs.redmine.code-workspaceTest plan