add - Added mail provider tracker #1
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: "Tracking the mail provider list" | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
- cron: '06 12 * * *' | |
jobs: | |
track: | |
name: Track | |
runs-on: 'ubuntu-latest' | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
ref: ${{ github.ref }} | |
- name: Download the list | |
run: | | |
bash Nettify/assets/IspInfo/getispinfo.sh | |
- name: Show git diff | |
run: | | |
git status | |
git diff | |
- name: Add difference and push | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: upd - Updated ISP list (text) | |
committer_name: Mail Provider Watch | |
committer_email: [email protected] | |
add: 'Nettify/assets/IspInfo/isps.txt' | |
push: true |