Fix workflow permissions for done labeling
| @@ -186,6 +186,12 @@ jobs: | ||
| 186 | 186 | runs-on: ubuntu-latest |
| 187 | 187 | if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'staging' |
| 188 | 188 | |
| 189 | + # Override permissions, We need to be able to write to issues | |
| 190 | + permissions: | |
| 191 | + contents: read | |
| 192 | + issues: write | |
| 193 | + pull-requests: write | |
| 194 | + | |
| 189 | 195 | steps: |
| 190 | 196 | - name: Extract Linked Issues From PR Description |
| 191 | 197 | id: extract_issues |