Skip to content

add - Added mail provider tracker #1

add - Added mail provider tracker

add - Added mail provider tracker #1

Workflow file for this run

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