Skip to content

Commit

Permalink
workflows: add ip prefix duplicate check
Browse files Browse the repository at this point in the history
  • Loading branch information
Noki committed Jul 22, 2024
1 parent adc7bd4 commit 10edd30
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/checks/check-ip-prefix-duplicates.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/bash

# Change to the locations directory
cd locations || exit 1

# Check for IPv4 duplicates
ipv4_duplicates=$(sed -nE 's/^\s*prefix:\s*["'\''"]?([^"'\''\s#]+)["'\''"]?/\1/p' ./*.yml | sort | uniq -cd)

# Check for IPv6 duplicates
ipv6_duplicates=$(sed -nE 's/^\s*ipv6_prefix:\s*["'\''"]?([0-9a-fA-F:]+\/[0-9]+)["'\''"]?/\1/p' ./*.yml | sort | uniq -cd)


if [ -n "$ipv4_duplicates" ] || [ -n "$ipv6_duplicates" ]; then
if [ -n "$ipv4_duplicates" ]; then
echo "Duplicate IPv4 prefixes found:"
echo "$ipv4_duplicates"
fi
if [ -n "$ipv6_duplicates" ]; then
echo "Duplicate IPv6 prefixes found:"
echo "$ipv6_duplicates"
fi
exit 1
else
echo "No duplicate prefixes found."
fi
17 changes: 17 additions & 0 deletions .github/workflows/check-ip-prefix-duplicates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Check for duplicate IP prefixes

on: [push, pull_request] # yamllint disable-line rule:truthy

jobs:
check-ip-prefix-duplicates:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Run IP prefix duplicate check
run: |
./.github/checks/check-ip-prefix-duplicates.sh

0 comments on commit 10edd30

Please sign in to comment.