Skip to content

Commit 12b2394

Browse files
committed
feat: add new feature
1 parent 730978a commit 12b2394

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ on:
2828
permissions:
2929
contents: write
3030
id-token: write
31+
issues: write
32+
pull-requests: write
3133

3234
jobs:
3335
lint:
@@ -63,6 +65,11 @@ jobs:
6365
fetch-depth: 0
6466
token: ${{ secrets.PAT_TOKEN }}
6567

68+
- name: Configure Git
69+
run: |
70+
git config --global user.name "github-actions[bot]"
71+
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
72+
6673
- name: Set up Python
6774
uses: actions/setup-python@v4
6875
with:
@@ -92,6 +99,8 @@ jobs:
9299
- name: Python Semantic Release
93100
id: release
94101
uses: python-semantic-release/python-semantic-release@v9.15.0
102+
env:
103+
GH_TOKEN: ${{ secrets.PAT_TOKEN }}
95104
with:
96105
github_token: ${{ secrets.PAT_TOKEN }}
97106
prerelease: ${{ inputs.prerelease || false }}

0 commit comments

Comments
 (0)