Add bump-nextcloud-version skill - #16
Merged
Merged
Conversation
Documents the two-commit process this repo uses to track a new Nextcloud major version, derived from the actual history: 7b240ab/512c770 for the stable35/NC36 cycle, 923d4d0/7579129 for stable34/NC35, bfa10c1/29d23a5 for stable33/NC34. 1. Create stableNN off master: drop the "-dev" suffix from appinfo/info.xml's <version> and switch <image-tag> from the floating "master" tag to the fixed release version. 2. Bump master's <version> to NN+1-dev and <nextcloud min/max-version> to NN+1, leaving <image-tag> on "master". Unlike workflow_ocr, this repo has no CI dependency on the Nextcloud server source, so there are no server-version/ocp-version CI matrices to repoint - the whole cycle is appinfo/info.xml only. Also notes the build.yml vs. appstore-build-publish.yml split (the fixed image tag is only actually built later, via a GitHub release) and points at the equivalent skill in the workflow_ocr companion repo. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01F9n81aZgDyY6jdBC4yxyW6
R0Wi
marked this pull request as ready for review
September 9, 2026 19:19
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
Adds a Claude Code skill (
.claude/skills/bump-nextcloud-version/) that documents how thisrepo tracks a new Nextcloud major version, so an AI agent can run the process
end-to-end when asked instead of rediscovering it from git history each time.
What it documents
The process was reverse-engineered from the repo's actual history across four cycles
(
7b240ab/512c770for stable35/NC36,923d4d0/7579129for stable34/NC35,bfa10c1/29d23a5for stable33/NC34, plus the earlier NC32 and NC33 cycles) and isconsistently two small commits:
stableNNoffmaster: drop the-devsuffix fromappinfo/info.xml's<version>and switch<image-tag>from the floatingmastertag to the fixed releaseversion (e.g.
1.35.0).mastertoNN+1: set<version>to1.(NN+1).0-devand<nextcloud min/max-version>toNN+1, leaving<image-tag>onmaster.Unlike
workflow_ocr, this repo has no CI dependency on the Nextcloud server source (it'sa standalone Python ExApp), so there are no
server-versions/ocp-versionCI matrices torepoint — the whole cycle is
appinfo/info.xmlonly. The skill also explains thebuild.yml(push-to-master) vs.appstore-build-publish.yml(GitHub-release-triggered)split, since the fixed
<image-tag>set in step 1 isn't actually built until a release iscut later, and points at the equivalent skill in the
workflow_ocrcompanion repo for theother half of the process.
disable-model-invocation: trueis set since this is a rare, deliberate, high-impactoperation that should only run when explicitly requested, not auto-triggered.
Related
This repo's
CLAUDE.mdand other.claude/skills//.claude/agents/files are still inthe earlier open PR #15 — this PR is intentionally independent of that one, as requested,
so it's based on
masterrather than that branch.🤖 Generated with Claude Code
https://claude.ai/code/session_01F9n81aZgDyY6jdBC4yxyW6
Generated by Claude Code