Skip to content

Github action to check syntax and integrity of ISC BIND/named zone files

License

Notifications You must be signed in to change notification settings

grramos/action-named-checkzone

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Named Checkzone

A Github action to to check the syntax and integrity of BIND-compatible zone files in a repository using named-checkzone. It only checks files with names starting with db. prefix and followed by the zone, ie. db.example.com stores DNS records for example.com zone.

Usage

name: action-named-checkzone

on: [push, pull_request]

jobs:
  named-checkzone:

    runs-on: ubuntu-latest

    steps:
    - name: Check out code
      uses: actions/checkout@master
    - name: Run named-checkzone
      uses: grramos/action-named-checkzone@master