Skip to content

Commit

Permalink
ci: refactor semantic-release to pakage.json and add replace plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Peters authored and FlxPeters committed Oct 12, 2024
1 parent cc51489 commit cbfdea1
Show file tree
Hide file tree
Showing 5 changed files with 6,821 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,5 @@ dmypy.json

# Pyre type checker
.pyre/

node_modules/
8 changes: 0 additions & 8 deletions .releaserc

This file was deleted.

7 changes: 5 additions & 2 deletions netbox_prometheus_sd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading

0 comments on commit cbfdea1

Please sign in to comment.