File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ description: This page describes the process of managing a release.
13136 . [ Other Repositories] ( #6-other-repositories )
14147 . [ Important Fixes after Release] ( #7-important-fixes-after-release )
15158 . [ Resources] ( #8-resources )
16- 9 . [ Forum post templates ] ( #9-forum-post-templates )
16+ 9 . [ Forum Post Templates ] ( #9-forum-post-templates )
1717
1818## 1. Checklist
1919
@@ -194,9 +194,9 @@ A point release for a critical issue is best limited to a small number of change
194194| Release manager tool | https://github.com/RIOT-OS/RIOT-release-manager |
195195| Test automation helper scripts | https://github.com/RIOT-OS/Release-Specs?tab=readme-ov-file#pytest-runner |
196196| Pending changes to test automation helper scripts | https://github.com/jia200x/Release-Specs/pulls |
197- | Backport automation script | {RIOTBASE} /dist/tools/backport_pr |
197+ | Backport automation script | https://github.com/RIOT-OS/RIOT/blob/master /dist/tools/backport_pr |
198198| Release statistics wiki | https://github.com/RIOT-OS/RIOT/wiki/release-statistics |
199- | Release stats script | {RIOTBASE} /dist/tools/release-stats |
199+ | Release stats script | https://github.com/RIOT-OS/RIOT/blob/master /dist/tools/release-stats |
200200| Release management org spreadsheet | https://drive.google.com/open?id=1rKYswFgQGYj4jSA4TBHjg980pAGoaKPj |
201201| Release test tracking spreadsheet | https://drive.google.com/open?id=0B384VtEXbD_HRzJSY1NGdnFpWERxb2JFeGdaS09iUjV0TGhN |
202202
Original file line number Diff line number Diff line change 11import { defineCollection , z } from "astro:content" ;
2- import { glob , type Loader } from "astro/loaders" ;
2+ import { type Loader } from "astro/loaders" ;
3+ import { docsLoader } from "@astrojs/starlight/loaders" ;
34import { docsSchema } from "@astrojs/starlight/schema" ;
45import { promises as fs } from "node:fs" ;
56
67export const collections = {
7- docs : defineCollection ( {
8- loader : glob ( { pattern : "**/*.(md|mdx)" , base : "../guides" } ) ,
9- schema : docsSchema ( ) ,
10- } ) ,
8+ docs : defineCollection ( { loader : docsLoader ( ) , schema : docsSchema ( ) } ) ,
119 changelog : defineCollection ( {
1210 loader : changelogLoader ( ) ,
1311 schema : z . object ( {
Original file line number Diff line number Diff line change 1+ ../../../guides
You can’t perform that action at this time.
0 commit comments