diff --git a/docs/plugins/woodpecker-plugins/plugins.json b/docs/plugins/woodpecker-plugins/plugins.json index 702b03a6b..41cde1dea 100644 --- a/docs/plugins/woodpecker-plugins/plugins.json +++ b/docs/plugins/woodpecker-plugins/plugins.json @@ -71,13 +71,6 @@ "verified": false }, { - "// todo": true, - "name": "Email", - "docs": "https://raw.githubusercontent.com/woodpecker-ci/plugin-email/master/docs.md", - "verified": true - }, - { - "// todo": true, "name": "Chart releaser", "docs": "https://raw.githubusercontent.com/woodpecker-ci/plugin-chart-releaser/master/docs.md", "verified": true diff --git a/docs/plugins/woodpecker-plugins/src/index.ts b/docs/plugins/woodpecker-plugins/src/index.ts index fb916db92..0b2e73df0 100644 --- a/docs/plugins/woodpecker-plugins/src/index.ts +++ b/docs/plugins/woodpecker-plugins/src/index.ts @@ -13,10 +13,6 @@ async function loadContent(): Promise { const plugins = ( await Promise.all( pluginsIndex.plugins.map(async (i) => { - if (i['// todo']) { - return undefined; - } - let docsContent: string; try { const response = await axios(i.docs); diff --git a/docs/plugins/woodpecker-plugins/src/types.ts b/docs/plugins/woodpecker-plugins/src/types.ts index 65f918fd7..1786427be 100644 --- a/docs/plugins/woodpecker-plugins/src/types.ts +++ b/docs/plugins/woodpecker-plugins/src/types.ts @@ -10,7 +10,6 @@ export type WoodpeckerPluginHeader = { }; export type WoodpeckerPluginIndexEntry = { - '// todo'?: boolean; name: string; // name of the plugin docs: string; // http url to the docs.md file verified?: boolean; // plugins maintained by trusted parties