Update DNS providers #152
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update DNS providers | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 7 * * 3' | |
jobs: | |
update: | |
name: Update | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update DNS providers | |
run: | | |
./update-providers.sh | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: stable | |
- name: Build | |
run: go build -v ./... | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
title: Update DNS Providers | |
body: | | |
Sync DNS Providers with go-acme/lego/providers/dns | |
labels: dns, automated pr | |
commit-message: Update DNS Providers | |
branch: auto-update-dns-providers | |
delete-branch: true | |