-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (30 loc) · 854 Bytes
/
update_pegel.yml
File metadata and controls
36 lines (30 loc) · 854 Bytes
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
name: Update pegel.md
on:
workflow_dispatch:
schedule:
- cron: '0 4 1,15 * *'
jobs:
update_pegel:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: "actions/checkout@v6"
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
- name: Install Python Packages
run: |
python -m pip install --upgrade pip
pip install .
- name: Execute Python Script
run: python update_pegel_list.py
working-directory: ./docs
- name: Create Pull Request
uses: peter-evans/create-pull-request@v8
with:
commit-message: Update pegel.md
title: Update pegel.md
body: Update pegel.md to reflect changes by LHP
branch: update-pegelmd
delete-branch: true