Update Plugin List #222
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 Plugin List | |
| on: | |
| schedule: | |
| # At 18:00 on Monday. https://crontab.guru | |
| - cron: '0 18 * * MON' | |
| workflow_dispatch: | |
| # Set permissions at the job level. | |
| permissions: {} | |
| jobs: | |
| createPullRequest: | |
| if: github.repository_owner == 'pytask-dev' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 | |
| with: | |
| python-version: 3.12 | |
| - name: Update Plugin List | |
| run: uv run --group plugin-list python scripts/update_plugin_list.py | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 | |
| with: | |
| commit-message: '[automated] Update plugin list' | |
| author: 'Tobias Raabe <tobiasraabe@users.noreply.github.com>' | |
| branch: update-plugin-list/patch | |
| delete-branch: true | |
| branch-suffix: short-commit-hash | |
| title: '[automated] Update plugin list' | |
| body: '[automated] Update plugin list' |