Cleanup plugins plugins (#2856)

This commit is contained in:
qwerty287 2023-11-22 09:31:22 +01:00 committed by GitHub
parent 80a237c6f1
commit 7b752808ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 12 deletions

View file

@ -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

View file

@ -13,10 +13,6 @@ async function loadContent(): Promise<Content> {
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);

View file

@ -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