File tree Expand file tree Collapse file tree 4 files changed +92
-94
lines changed Expand file tree Collapse file tree 4 files changed +92
-94
lines changed Original file line number Diff line number Diff line change 10
10
- synchronize
11
11
- labeled
12
12
- unlabeled
13
+ - edited
13
14
branches :
14
15
- main
15
16
@@ -38,11 +39,16 @@ jobs:
38
39
uses : actions/checkout@v4
39
40
with :
40
41
fetch-depth : 0
41
- ref : ${{ github.sha }}
42
+ ref : main
42
43
43
- - name : Force correct release branch on workflow sha
44
+ - name : Create fake commit with PR title
44
45
run : |
45
- git checkout -B ${{ github.ref_name }} ${{ github.sha }}
46
+ git config --global user.name '${{ steps.app-token.outputs.app-slug }}[bot]'
47
+ git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com'
48
+ git switch -c temp-${{ github.run_id }}
49
+ touch temp.txt
50
+ git add temp.txt
51
+ git commit -m "${{ github.event.pull_request.title }}"
46
52
47
53
- name : Install the latest version of uv
48
54
uses : astral-sh/setup-uv@v5
Original file line number Diff line number Diff line change 55
55
56
56
- name : Update version and changelogs
57
57
id : semantic-release
58
- uses : python-semantic-release/python-semantic-release@v9.16.0
58
+ uses : python-semantic-release/python-semantic-release@v9.16.1
59
59
with :
60
60
build : false
61
61
changelog : true
81
81
- name : Publish package distributions to GitHub Releases
82
82
if : steps.semantic-release.outputs.released == 'true'
83
83
id : publish-dist
84
- uses : python-semantic-release/publish-action@v9.16.0
84
+ uses : python-semantic-release/publish-action@v9.16.1
85
85
with :
86
86
github_token : ${{ steps.app-token.outputs.token }}
87
87
tag : ${{ steps.semantic-release.outputs.tag }}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ requires-python = ">=3.10"
11
11
dependencies = [
12
12
" mkdocstrings==0.27.0" ,
13
13
" mkdocstrings-python==1.13.0" ,
14
- " charset-normalizer==3.3.2 " ,
14
+ " charset-normalizer==3.4.1 " ,
15
15
" tree-sitter==0.23.2" ,
16
16
" tree-sitter-matlab==1.0.3" ,
17
17
]
You can’t perform that action at this time.
0 commit comments