mirror of
https://github.com/cunnie/sslip.io.git
synced 2025-12-24 12:12:48 +08:00
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.
22 lines
487 B
YAML
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
|