Update DNS Blacklists #37041
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 Blacklists | |
on: | |
schedule: | |
- cron: '* */3 * * *' | |
jobs: | |
update-blacklists: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: download-blacklists | |
run: ./download.sh | |
- name: Get date | |
id: date | |
run: echo "::set-output name=date::$(date -u +%Y-%m-%dT%H:%M:%SZ)" | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "[Bot] Update DNS Blacklists (${{ steps.date.outputs.date }})" | |
commit_user_name: "@dnutan" | |
commit_user_email: [email protected] | |
commit_author: dnutan <[email protected]> |