-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.go
103 lines (101 loc) · 3.71 KB
/
plugins.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package config
import "github.com/go-semantic-release/plugin-registry/internal/plugin"
var Plugins = plugin.Plugins{
{
Type: "provider",
Name: "github",
Repo: "go-semantic-release/provider-github",
Description: "A provider plugin that uses the GitHub API to publish releases.",
},
{
Type: "provider",
Name: "gitlab",
Repo: "go-semantic-release/provider-gitlab",
Description: "A provider plugin that uses the GitLab API to publish releases.",
},
{
Type: "changelog-generator",
Name: "default",
Repo: "go-semantic-release/changelog-generator-default",
Description: "A changelog generator plugin that generates a changelog based on the commit messages since the last release.",
},
{
Type: "commit-analyzer",
Name: "cz",
Aliases: []string{"default"},
Repo: "go-semantic-release/commit-analyzer-cz",
Description: "A commit analyzer plugin that uses the Conventional Commits specification to determine the type of release to create based on the commit messages since the last release.",
},
{
Type: "condition",
Name: "default",
Repo: "go-semantic-release/condition-default",
Description: "The fallback CI condition plugin that detects the current git branch and does not prevent any release.",
},
{
Type: "condition",
Name: "github",
Repo: "go-semantic-release/condition-github",
Description: "A CI condition plugin for GitHub Actions that checks if the current branch should trigger a new release.",
},
{
Type: "condition",
Name: "gitlab",
Repo: "go-semantic-release/condition-gitlab",
Description: "A CI condition plugin for GitLab CI that checks if the current branch should trigger a new release.",
},
{
Type: "files-updater",
Name: "npm",
Repo: "go-semantic-release/files-updater-npm",
Description: "A files updater plugin that updates the version in the package.json file.",
},
{
Type: "provider",
Name: "git",
Repo: "go-semantic-release/provider-git",
Description: "A provider plugin that uses git tags directly to publish releases. This works with any git repository.",
},
{
Type: "condition",
Name: "bitbucket",
Repo: "go-semantic-release/condition-bitbucket",
Description: "A CI condition plugin for Bitbucket Pipelines that checks if the current branch should trigger a new release.",
},
{
Type: "files-updater",
Name: "helm",
Repo: "go-semantic-release/files-updater-helm",
Description: "A files updater plugin that updates the version in the Chart.yaml file.",
},
{
Type: "hooks",
Name: "goreleaser",
Repo: "go-semantic-release/hooks-goreleaser",
Description: "A hooks plugin that runs GoReleaser to publish releases. The GoReleaser binary is bundled with the plugin.",
},
{
Type: "hooks",
Name: "npm-binary-releaser",
Repo: "go-semantic-release/hooks-npm-binary-releaser",
Description: "A hooks plugin that runs npm-binary-releaser to publish the released binaries to npm.",
},
{
Type: "hooks",
Name: "plugin-registry-update",
Repo: "go-semantic-release/hooks-plugin-registry-update",
Description: "A hooks plugin that updates the plugin registry after a new release.",
},
{
Type: "hooks",
Name: "exec",
Repo: "go-semantic-release/hooks-exec",
Description: "A hooks plugin that executes commands after a new release.",
},
{
Type: "provider",
Name: "gitea",
Repo: "go-semantic-release/provider-gitea",
Description: "A provider plugin that uses the Gitea API to publish releases.",
},
}