Reorder RFCs in the mdBook (#65)

Reorder RFCs in the mdBook as suggested
[here](https://github.com/polkadot-fellows/RFCs/pull/60#issuecomment-1883013694).

cc @wirednkod
This commit is contained in:
Przemek Rzad
2024-01-18 22:25:13 +01:00
committed by GitHub
parent ade390b5ef
commit 785a3187ee
+3 -3
View File
@@ -24,15 +24,15 @@ module.exports = async ({github, context}) => {
}
}
fs.appendFileSync(summaryPath, "\n---\n\n# Approved\n\n")
appendRfcsToSummary("mdbook/src/approved/")
fs.appendFileSync(summaryPath, "\n---\n\n# Newly Proposed\n\n")
appendRfcsToSummary("mdbook/src/new/")
fs.appendFileSync(summaryPath, "\n---\n\n# Proposed\n\n")
appendRfcsToSummary("mdbook/src/proposed/")
fs.appendFileSync(summaryPath, "\n---\n\n# Approved\n\n")
appendRfcsToSummary("mdbook/src/approved/")
fs.appendFileSync(summaryPath, "\n---\n\n# Stale\n\n")
appendRfcsToSummary("mdbook/src/stale/")
}