Skip to content

more stuff

more stuff #11

Workflow file for this run

name: Dry Run DNS

Check failure on line 1 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

(Line: 6, Col: 5): A mapping was not expected, (Line: 27, Col: 13): Unexpected value ''
on:
- push
- pull_request
- workflow_dispatch:
inputs:
force:
description: 'Use --force flag'
required: false
type: boolean
default: false
jobs:
octodns:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3'
cache: "pip" # caches pip dependencies
- name: Install OctoDNS
run: pip install 'octodns==0.9.10'
- name: Do a dry run
run: ./bin/dry-run ${{ inputs.force && '--force' || '' }}
env:
# DNSIMPLE_ACCOUNT_NUMBER: ${{ secrets.DNSIMPLE_ACCOUNT_NUMBER }}
# DNSIMPLE_API_KEY: ${{ secrets.DNSIMPLE_API_KEY }}