This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
在CitizenCSS添加EditForm样式未来的剥离位点 #302
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: Sync Mediawiki Interface Codes | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- src/**/*.js | |
- src/**/*.css | |
- src/**/.options | |
# Disallow parallel running | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
sync_codes: | |
runs-on: ubuntu-latest | |
env: | |
MW_BOT_PASSWORD: ${{ secrets.MW_BOT_PASSWORD }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- name: Synchronize with Mediawiki | |
run: | | |
pip install -r scripts/requirements.txt | |
python scripts/sync_mediawiki.py |