From 03b8c9c76efd72cadee7000b70ce9c14b1ff4daf Mon Sep 17 00:00:00 2001 From: Nat Morris Date: Mon, 14 Oct 2024 18:07:58 +0100 Subject: [PATCH] ENG-3602 initial plugin manifest (#578) * chore: trigger a central workflow when the manifest is modified. * chore: import compatibility from the existing registry details --- .github/workflows/manifest-modified.yaml | 15 +++++++++++++++ netbox-plugin.yaml | 21 +++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 .github/workflows/manifest-modified.yaml create mode 100644 netbox-plugin.yaml diff --git a/.github/workflows/manifest-modified.yaml b/.github/workflows/manifest-modified.yaml new file mode 100644 index 0000000..28bd89e --- /dev/null +++ b/.github/workflows/manifest-modified.yaml @@ -0,0 +1,15 @@ +name: NetBox plugin manifest modified + +on: + push: + branches: [ develop ] + paths: + - netbox-plugin.yaml + +concurrency: + group: ${{ github.workflow }} + cancel-in-progress: false + +jobs: + manifest-modified: + uses: netboxlabs/public-workflows/.github/workflows/reusable-plugin-manifest-modified.yml@release diff --git a/netbox-plugin.yaml b/netbox-plugin.yaml new file mode 100644 index 0000000..0e8b35c --- /dev/null +++ b/netbox-plugin.yaml @@ -0,0 +1,21 @@ +version: 0.1 +package_name: netbox-topology-views +compatibility: + - release: 4.1.0 + netbox_min: 4.1.0 + netbox_max: 4.1.3 + - release: 4.0.0 + netbox_min: 4.0.0 + netbox_max: 4.0.9 + - release: 3.9.1 + netbox_min: 3.7.1 + netbox_max: 3.7.8 + - release: 3.9.0 + netbox_min: 3.7.1 + netbox_max: 3.7.8 + - release: 3.8.1 + netbox_min: 3.6.9 + netbox_max: 3.6.9 + - release: 3.6.2 + netbox_min: 3.5.1 + netbox_max: 3.5.9