Skip to content

Remove parked domains #1

Remove parked domains

Remove parked domains #1

Workflow file for this run

name: Remove parked domains
run-name: Remove parked domains
on:
workflow_dispatch:
workflow_call:
schedule:
- cron: '0 1 * * *'
permissions:
contents: write
jobs:
check-parked-domains:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: main
- name: check_parked.sh
run: bash functions/check_parked.sh
- name: Push
run: |
git config user.email ${{ vars.GIT_EMAIL }}
git config user.name ${{ vars.GIT_USERNAME }}
git add .
git diff-index --quiet HEAD || git commit -m "Remove parked domains"
git push -q