Skip to content

Commit 552bde8

Browse files
chore(TECHOPS-19100): fix ci (#10)
Saw the following error in the master build when creating the release please PR: ``` Error: release-please failed: GitHub Actions is not permitted to create or approve pull requests. ``` updating build permissions to allow Github Actions to make changes needed for releases.
1 parent dba08f5 commit 552bde8

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
permissions:
1010
contents: write
1111
pull-requests: write
12+
actions: write
13+
issues: write
1214

1315
jobs:
1416
test:
@@ -24,6 +26,9 @@ jobs:
2426
extra_tags: stable
2527
secrets:
2628
RELEASE_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29+
permissions:
30+
contents: write
31+
pull-requests: write
2732

2833
pypi-publish:
2934
name: Publish to PyPI

0 commit comments

Comments
 (0)