Tag: action
Here's a quick Github Action a prompt blurted to periodically backup a
Cloudflare DNS settings for all my domains and commit them into the
repository. Zero maintenance required once set up:
name: Cloudflare DNS Backup
on:
workflow_dispatch:
schedule:
- cron: "40 0 *…
Previously, I made my first GitHub Action backup script, which you can read
about in a previous post
and it was a success from my point of view. I had these critical goals in
mind for such a script:
almost maintenance free
securely stored credentials
automatic
basically free
I …