From 0b6f979d8e54a54e85979564eae4d082a6b633e5 Mon Sep 17 00:00:00 2001 From: Allan Clark Date: Thu, 2 Nov 2023 14:17:17 -0700 Subject: [PATCH] fix: 403s on action-gh-release creating release --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3bab70b..cf88f9a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,6 +3,7 @@ # and put the release notes into the commit message for the tag. name: Release +# yamllint disable-line rule:truthy on: push: tags: @@ -11,6 +12,9 @@ on: jobs: build: runs-on: ubuntu-latest + permissions: + # 403s on release: https://github.com/softprops/action-gh-release/issues/236#issue-1258868166 + contents: write steps: - name: Checkout uses: actions/checkout@v2