📺 Discover and process all US TV shows dynamically via TVMaze schedul… #608
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: Clear Repo URL | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| clear-url: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install dependencies | |
| run: | | |
| pip install playwright | |
| playwright install --with-deps chromium | |
| - name: Clear Website URL | |
| env: | |
| GH_TOKEN: ${{ secrets.PAT_TOKEN }} | |
| run: python scripts/clear_repo_url.py |