build: harden GitHub workflow permissions

Grant pull-requests write permission to the labeler workflow and
read-only to everything else.

Signed-off-by: Alex Low <aleksandrosansan@gmail.com>
[ wrap to 80 columns and fix wrong author as requested by author itself ]
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
(cherry picked from commit 7152599407)
This commit is contained in:
Alex Low 2022-09-19 12:20:37 +02:00 committed by Hauke Mehrtens
parent c7757810fc
commit 008e9a335d
3 changed files with 13 additions and 0 deletions

View File

@ -3,6 +3,9 @@ name: Test Formalities
on:
pull_request:
permissions:
contents: read
jobs:
build:
name: Test Formalities

View File

@ -2,8 +2,15 @@ name: 'Pull Request Labeler'
on:
- pull_request_target
permissions:
contents: read
jobs:
labeler:
permissions:
contents: read # to determine modified files (actions/labeler)
pull-requests: write # to add labels to PRs (actions/labeler)
name: Pull Request Labeler
runs-on: ubuntu-latest
steps:

View File

@ -5,6 +5,9 @@ on:
paths:
- 'tools/**'
permissions:
contents: read
jobs:
build:
name: Build tools on ${{ matrix.os }}