Update whitelist.raw #150
This file contains hidden or 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: "🚀 TechRZN Master Build" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'sources/**' | |
| - 'scripts/**' | |
| - 'manual_sources/**' | |
| - '.github/workflows/**' | |
| schedule: | |
| - cron: '0 4 * * *' | |
| workflow_dispatch: | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| # Notwendig für die Übermittlung der Abhängigkeiten | |
| security-events: write | |
| steps: | |
| - name: 🛰️ Repository auschecken | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: main | |
| fetch-depth: 0 | |
| - name: 🐍 Python einrichten | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| # --- DIE SAUBERE LÖSUNG --- | |
| # Das aktiviert das automatische Caching und die Analyse | |
| cache: 'pip' | |
| - name: 📦 Abhängigkeiten installieren | |
| run: pip install requests | |
| - name: 🛠️ Master-Liste bauen | |
| run: python scripts/build.py | |
| - name: 💾 Änderungen speichern (Commit & Push) | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| branch: main | |
| commit_message: "build: Filter-Listen v1.2.0 aktualisiert [bot]" | |
| file_pattern: 'blocklists/*.txt Whitelists/*.txt' | |
| push_options: '--force' |