lol

.github/workflows: fix permissions

the merge actions comment on pull requests, seems this was broken by 2c71278a2395d6d8c4e06d1ebe4de1ffdae727c7

also:
- fix permissions on new manual rendering action
- drop unnecessary issues permission from the terraform action

zowoq bbe49339 88199c6d

+4 -5
+1 -1
.github/workflows/manual-rendering.yml
··· 13 13 jobs: 14 14 check-rendering-equivalence: 15 15 permissions: 16 - issues: write # for peter-evans/create-or-update-comment to create or update comment 16 + pull-requests: write # for peter-evans/create-or-update-comment to create or update comment 17 17 if: github.repository_owner == 'NixOS' 18 18 runs-on: ubuntu-latest 19 19 steps:
+1 -1
.github/workflows/periodic-merge-24h.yml
··· 21 21 periodic-merge: 22 22 permissions: 23 23 contents: write # for devmasx/merge-branch to merge branches 24 - issues: write # for peter-evans/create-or-update-comment to create or update comment 24 + pull-requests: write # for peter-evans/create-or-update-comment to create or update comment 25 25 if: github.repository_owner == 'NixOS' 26 26 runs-on: ubuntu-latest 27 27 strategy:
+1 -1
.github/workflows/periodic-merge-6h.yml
··· 21 21 periodic-merge: 22 22 permissions: 23 23 contents: write # for devmasx/merge-branch to merge branches 24 - issues: write # for peter-evans/create-or-update-comment to create or update comment 24 + pull-requests: write # for peter-evans/create-or-update-comment to create or update comment 25 25 if: github.repository_owner == 'NixOS' 26 26 runs-on: ubuntu-latest 27 27 strategy:
+1 -2
.github/workflows/update-terraform-providers.yml
··· 12 12 tf-providers: 13 13 permissions: 14 14 contents: write # for peter-evans/create-pull-request to create branch 15 - issues: write # for peter-evans/create-or-update-comment to create or update comment 16 - pull-requests: write # for peter-evans/create-pull-request to create a PR 15 + pull-requests: write # for peter-evans/create-pull-request to create a PR, for peter-evans/create-or-update-comment to create or update comment 17 16 if: github.repository_owner == 'NixOS' && github.ref == 'refs/heads/master' # ensure workflow_dispatch only runs on master 18 17 runs-on: ubuntu-latest 19 18 steps: