Skip to content

Commit 7d9ebfb

Browse files
fix(ci): align prerelease predicate, contributing link, docs edit branch, roadmap
Co-authored-by: Codesmith <codesmith-bot@users.noreply.github.com>
1 parent f1e4eea commit 7d9ebfb

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ contact_links:
44
url: https://github.com/OnlineChefGroep/opencodex/blob/main/SECURITY.md
55
about: Read the supported-version and reporting guidance before sharing security-sensitive details.
66
- name: Contributing guide
7-
url: https://github.com/OnlineChefGroep/opencodex
7+
url: https://github.com/OnlineChefGroep/opencodex/blob/dev/CONTRIBUTING.md
88
about: Review setup, build, and verification guidance for contributors.

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,10 @@ jobs:
327327
# advance the baseline to a later preview that is missing/empty — that would
328328
# drop the gap between the last carried preview and that later tag.
329329
notes_range_start="$previous_tag"
330-
if [[ "$RELEASE_VERSION" != *-preview.* ]]; then
330+
# Same hyphen predicate as the dist-tag gate and prerelease_flag above: any
331+
# pre-release suffix ships on the preview channel, so only truly stable
332+
# versions take the carry path.
333+
if [[ "$RELEASE_VERSION" != *-* ]]; then
331334
preview_carry_tags="$(
332335
git tag --list "v${RELEASE_VERSION}-preview.*" |
333336
bun scripts/release-notes.ts matching-preview-tags "$RELEASE_VERSION"

ROADMAP.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Roadmap
22

3-
**OnlineChefGroep fork** of [opencodex](https://github.com/lidge-jun/opencodex)
3+
Roadmap for [OnlineChefGroep/opencodex](https://github.com/OnlineChefGroep/opencodex).
44

55
## Vision
66

@@ -16,7 +16,8 @@ no longer dependent on upstream decisions or timelines.
1616

1717
## Near term (next)
1818

19-
- [ ] **First fork release (v1.0.0-alpha.1)** — tag and publish to npm
19+
- [ ] **First fork release (`2.7.43`)**: publish from `main` on npm dist-tag `latest`
20+
(any pre-release suffix ships on `preview` instead)
2021
- [ ] **Update READMEs** — ensure all translated READMEs (ko, zh, ru, ja) reflect fork status
2122
- [ ] **Clean up old tags** — remove stale upstream tags that don't point to our commits
2223
- [ ] **Dependency audit** — review and update all dependencies (gui + root)

docs-site/astro.config.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ export default defineConfig({
5555
{ icon: "github", label: "GitHub", href: "https://github.com/OnlineChefGroep/opencodex" },
5656
],
5757
editLink: {
58-
baseUrl: "https://github.com/OnlineChefGroep/opencodex/edit/main/docs-site/",
58+
// `dev` is the only integration branch (see MAINTAINERS.md); `main` receives
59+
// release promotions only, so "Edit page" must open a `dev` edit session.
60+
baseUrl: "https://github.com/OnlineChefGroep/opencodex/edit/dev/docs-site/",
5961
},
6062
lastUpdated: true,
6163
// English at the site root; Korean under /ko, Simplified Chinese under /zh-cn, Russian under /ru, Japanese under /ja.

0 commit comments

Comments
 (0)