Merge pull request #13628 from sbidoul/imp-doc-pep517-sbi #628
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: Update documentation redirects | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - ".readthedocs-custom-redirects.yml" | |
| - ".readthedocs.yml" | |
| schedule: | |
| - cron: 0 0 * * MON # Run every Monday at 00:00 UTC | |
| env: | |
| FORCE_COLOR: "1" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| update-rtd-redirects: | |
| runs-on: ubuntu-latest | |
| environment: RTD Deploys | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - run: pipx run tools/update-rtd-redirects.py | |
| env: | |
| RTD_API_TOKEN: ${{ secrets.RTD_API_TOKEN }} |