-
Notifications
You must be signed in to change notification settings - Fork 13
44 lines (37 loc) · 1.26 KB
/
update-plugin-list.yml
File metadata and controls
44 lines (37 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.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@c0f553fe549906ede9cf27b5156039d195d2ece0
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'