Skip to content

Commit

Permalink
👷 Add a GitHub Action to print out "empty" hosted zones
Browse files Browse the repository at this point in the history
This will allows one and all to run the action using the click of a button.
  • Loading branch information
jasonBirchall committed Jun 27, 2024
1 parent 495f7b3 commit 13a83f6
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/check-empty-zones.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Print out empty hosted zones # A hosted zone with only an NS and SOA record

on:
workflow_dispatch: # Allows manual triggering

jobs:
check-for-empty-zones:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11

- name: Install dependencies
run: |
make install
- name: Run check for unmanaged zones
id: check-zones
env:
AWS_ACCESS_KEY_ID: ${{ secrets.OCTODNS_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.OCTODNS_AWS_SECRET_ACCESS_KEY }}
PYTHONUNBUFFERED: 1
run: make check-empty-zones

0 comments on commit 13a83f6

Please sign in to comment.