Integration of RotatingDomainsChecker (#229646)

* Integration of RotatingDomainsChecker

* added jmanga as non Turkish example (switches TLD)

* upd
This commit is contained in:
Alex
2026-04-21 15:28:24 +03:00
committed by GitHub
parent e2b9107524
commit 4290580068
4 changed files with 119 additions and 3 deletions

View File

@@ -0,0 +1,36 @@
name: Rotating Domains Checker
on:
schedule:
- cron: '0 */12 * * *'
workflow_dispatch:
inputs:
mode:
description: 'Run mode'
required: false
default: 'prod_dry'
type: choice
options:
- ''
- 'prod_live'
- 'prod_dry'
- 'test_live'
- 'test_dry'
jobs:
check-domains:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v6
- name: Configure git user
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- uses: Alex-302/RotatingDomainsChecker@master
with:
mode: ${{ github.event.inputs.mode || '' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}