forked from Flexget/Flexget
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (46 loc) · 1.46 KB
/
changelog.yml
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
45
46
47
48
49
name: Changelog Update
on:
push:
branches:
- develop
permissions:
contents: read
jobs:
update-changelog:
permissions:
contents: write # for Git to git push
name: Update Changelog
runs-on: ubuntu-latest
env:
PYTHON_VERSION: '3.13' # renovate: datasource=python-version depName=python
UV_VERSION: 0.5.18 # renovate: datasource=pypi depName=uv
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
repository: Flexget/wiki
path: wiki
token: ${{ secrets.flexgetbot_pat }}
ref: main
- name: Setup Git User
run: |
git config --global user.email github-actions[bot]@users.noreply.github.com
git config --global user.name github-actions[bot]
- name: Install uv
uses: astral-sh/setup-uv@887a942a15af3a7626099df99e897a18d9e5ab3a # v5
with:
enable-cache: true
python-version: ${{ env.PYTHON_VERSION }}
version: ${{ env.UV_VERSION }}
- name: Update the Changelog
run: |
set -x
uv run update-changelog.py wiki/ChangeLog.md
cd wiki
git add ChangeLog.md
if ! git diff --cached --exit-code; then
git commit -m "Automated ChangeLog update"
git push origin main
fi