Skip to content

Zones check

Zones check #31

Workflow file for this run

---
name: Zones check
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- '**'
schedule:
- cron: "42 3 * * 1"
jobs:
build:
runs-on: ubuntu-latest
steps:
# first load the base branch
- uses: actions/checkout@v4
with:
fetch-depth: 0
# and then the PR commit
- uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- uses: OSAS/dns4tenants-validation@main