Files
nip/.github/workflows/nameservers.yml
Brian Cunnie d987e155ea Include "nip.io" in the namerserver checks
Instead of checking only sslip.io, we expand our [4-times-per-day]
nameserver checks to include nip.io. This is a component of the
long-running campaign to promote the nip.io domain to full citizenship.
2025-07-24 18:57:46 -07:00

22 lines
487 B
YAML

name: Nameservers
on:
schedule:
- cron: "0 */6 * * *" # Runs every 6 hours
workflow_dispatch: # Allows manual triggering
jobs:
check-dns:
runs-on: self-hosted
container:
image: cunnie/fedora-ruby-bind-utils
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run DNS check
run: rspec --format documentation --color spec/
env:
DOMAINS: nip.io,sslip.io # You can set your domain here if needed