From 380fc267fec5c60312c02e23401315c073dc5fd6 Mon Sep 17 00:00:00 2001 From: Nat Morris Date: Wed, 9 Oct 2024 20:49:38 +0100 Subject: [PATCH] feat: Trigger an update when the manifest is modified --- .github/workflows/manifest-modified.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/manifest-modified.yaml diff --git a/.github/workflows/manifest-modified.yaml b/.github/workflows/manifest-modified.yaml new file mode 100644 index 0000000..ed4314f --- /dev/null +++ b/.github/workflows/manifest-modified.yaml @@ -0,0 +1,15 @@ +name: NetBox plugin manifest modified + +on: + push: + branches: [ main ] + 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