We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 730978a commit 12b2394Copy full SHA for 12b2394
.github/workflows/release.yml
@@ -28,6 +28,8 @@ on:
28
permissions:
29
contents: write
30
id-token: write
31
+ issues: write
32
+ pull-requests: write
33
34
jobs:
35
lint:
@@ -63,6 +65,11 @@ jobs:
63
65
fetch-depth: 0
64
66
token: ${{ secrets.PAT_TOKEN }}
67
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
+
73
- name: Set up Python
74
uses: actions/setup-python@v4
75
with:
@@ -92,6 +99,8 @@ jobs:
92
99
- name: Python Semantic Release
93
100
id: release
94
101
uses: python-semantic-release/python-semantic-release@v9.15.0
102
+ env:
103
+ GH_TOKEN: ${{ secrets.PAT_TOKEN }}
95
104
96
105
github_token: ${{ secrets.PAT_TOKEN }}
97
106
prerelease: ${{ inputs.prerelease || false }}
0 commit comments