mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 11:51:02 +00:00
Cleanup plugins plugins (#2856)
This commit is contained in:
parent
80a237c6f1
commit
7b752808ef
3 changed files with 0 additions and 12 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue