Update Status #2128
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: Update Status | |
run-name: Update Status | |
on: | |
workflow_dispatch: | |
inputs: | |
no_skip_edu: | |
description: 'Do not skip edu domains' | |
required: true | |
type: 'boolean' | |
default: false | |
count_only: | |
description: 'Only count the number of domains, do not verify' | |
required: true | |
type: 'boolean' | |
default: false | |
schedule: | |
- cron: '30 3/4 * * *' | |
push: | |
branches: | |
- main | |
paths: | |
- 'README.md' | |
- '.github/workflows/update_status.yml' | |
- 'verify-url.py' | |
- 'new/**' | |
- 'whitelist.json' | |
permissions: | |
contents: write | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
update_status: | |
name: Update Status | |
runs-on: ubuntu-latest | |
if: ${{ github.repository == 'cokice/List-of-genshin-University' }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install dnspython requests pypinyin | |
- name: Prepare Proxy | |
run: | | |
echo -e "${{ secrets.PROXY }}" >> proxies.txt | |
- name: Update status | |
run: python3 verify-url.py | |
id: update_status | |
env: | |
NO_SKIP_EDU: ${{ github.event.inputs.no_skip_edu == true && '1' || '0' }} | |
COUNT_ONLY: ${{ github.event.inputs.count_only == true && '1' || '0' }} | |
- name: Revert Proxy | |
run: | | |
git checkout proxies.txt | |
- name: Commit and push | |
uses: actions4git/add-commit-push@v1 | |
with: | |
commit-message: ${{ steps.update_status.outputs.commit_message }} | |
continue-on-error: true | |
push_to_website: | |
name: Push to website | |
uses: ./.github/workflows/main.yml | |
needs: update_status | |
if: ${{ github.repository == 'cokice/List-of-genshin-University' }} | |
secrets: | |
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} |