Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 733 Bytes

README.md

File metadata and controls

35 lines (28 loc) · 733 Bytes

Delete DNS Record Action for GitHub

Removes CloudFlare DNS record by ID or record name.

Usage via Github Actions

name: example
on:
  pull_request:
    type: [closed]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: infraway/delete-dns-record@v2.0
        with:
          name: "review.example.com"
          token: ${{ secrets.CLOUDFLARE_TOKEN }}
          zone: ${{ secrets.CLOUDFLARE_ZONE }}

Usage via docker image

docker run -it --rm \
  -e "INPUT_TOKEN=1" \
  -e "INPUT_ZONE=2" \
  -e "INPUT_NAME=review.example.com" \
  infraway/cloudflare-delete-dns-record 

License

The scripts and documentation in this project are released under the MIT License.