-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: refactor semantic-release to pakage.json and add replace plugin
- Loading branch information
Showing
5 changed files
with
6,821 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,3 +127,5 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
node_modules/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,18 +5,21 @@ | |
from extras.plugins import PluginConfig | ||
|
||
|
||
__VERSION__ = "1.1.1" | ||
|
||
|
||
class PrometheusSD(PluginConfig): | ||
name = "netbox_prometheus_sd" | ||
verbose_name = "Netbox Prometheus SD" | ||
description = ( | ||
"Provide Prometheus url_sd compatible API Endpoint with data from netbox" | ||
) | ||
version = "1.1.1" | ||
version = __VERSION__ | ||
author = "Felix Peters" | ||
author_email = "[email protected]" | ||
base_url = "prometheus-sd" | ||
required_settings = [] | ||
default_settings = {} | ||
|
||
|
||
config = PrometheusSD # pylint:disable=invalid-name | ||
config = PrometheusSD |
Oops, something went wrong.