Skip to content

Commit

Permalink
add write permissions to create draft release
Browse files Browse the repository at this point in the history
  • Loading branch information
morcuended committed Nov 30, 2023
1 parent 982f55c commit 5e931f7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release-drafter.yml
Expand Up @@ -9,9 +9,12 @@ on:

jobs:
update_release_draft:
permissions:
# write permission is required to create a github release
contents: write
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "main"
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5e931f7

Please sign in to comment.