Skip to content
This repository has been archived by the owner on Oct 25, 2023. It is now read-only.

Commit

Permalink
Merge pull request #102 from nautobot/develop
Browse files Browse the repository at this point in the history
Prep for 0.7.2 release
  • Loading branch information
jdrew82 authored Sep 8, 2022
2 parents 784abf3 + 8e49ce8 commit b4273ba
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
---
name: "CI"
concurrency: # Cancel any existing runs of this workflow for this same PR
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
on: # yamllint disable-line rule:truthy rule:comments
- "push"
- "pull_request"
push:
branches:
- "main"
- "develop"
tags:
- "v*"
pull_request: ~

env:
PLUGIN_NAME: "nautobot-ssot-infoblox"
Expand Down
2 changes: 1 addition & 1 deletion nautobot_ssot_infoblox/diffsync/adapters/nautobot.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def load_prefixes(self):
description=prefix.description,
status=prefix.status.slug if hasattr(prefix, "status") else "container",
ext_attrs=prefix.custom_field_data,
vlans={prefix.vlan.vid: prefix.vlan.name} if hasattr(prefix, "vlan") else {},
vlans={prefix.vlan.vid: prefix.vlan.name} if prefix.vlan is not None else {},
pk=prefix.id,
)
try:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nautobot-ssot-infoblox"
version = "0.7.1"
version = "0.7.2"
description = "Nautobot SSoT Infoblox"
authors = ["Network to Code, LLC <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit b4273ba

Please sign in to comment.