Run openSquat #10
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: Run openSquat | |
run-name: Run openSquat | |
on: | |
workflow_dispatch: | |
workflow_call: | |
schedule: | |
- cron: '0 23 * * *' | |
permissions: | |
contents: write | |
jobs: | |
run-opensquat: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: opensquat.sh | |
run: bash functions/opensquat.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 "Retrieve domains via openSquat" | |
git push -q | |
build: | |
needs: run-opensquat | |
uses: ./.github/workflows/retrieve_domains.yml |