diff options
author | Alex Low <aleksandrosansan@gmail.com> | 2022-09-19 12:20:37 +0200 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-09-19 15:02:27 +0200 |
commit | 715259940776843d8799bc39de8eb50eb764189b (patch) | |
tree | c1335df0ea5bb357ac2c91ab90157873acff8686 /.github/workflows | |
parent | 412fcf3d4400f84551f3ead0514834c62d94a251 (diff) | |
download | upstream-715259940776843d8799bc39de8eb50eb764189b.tar.gz upstream-715259940776843d8799bc39de8eb50eb764189b.tar.bz2 upstream-715259940776843d8799bc39de8eb50eb764189b.zip |
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>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/formal.yml | 3 | ||||
-rw-r--r-- | .github/workflows/kernel.yml | 4 | ||||
-rw-r--r-- | .github/workflows/labeler.yml | 7 | ||||
-rw-r--r-- | .github/workflows/tools.yml | 3 |
4 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/formal.yml b/.github/workflows/formal.yml index 5046b5a180..1256481637 100644 --- a/.github/workflows/formal.yml +++ b/.github/workflows/formal.yml @@ -3,6 +3,9 @@ name: Test Formalities on: pull_request: +permissions: + contents: read + jobs: build: name: Test Formalities diff --git a/.github/workflows/kernel.yml b/.github/workflows/kernel.yml index 4f8c6b9317..62e0952f19 100644 --- a/.github/workflows/kernel.yml +++ b/.github/workflows/kernel.yml @@ -7,6 +7,10 @@ on: - 'include/kernel-*' - 'package/kernel/**' - 'target/linux/generic/**' + +permissions: + contents: read + jobs: determine_targets: name: Set targets diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 6bcdf51a89..420617809b 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -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: diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index be967833cb..4e423fdd62 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -6,6 +6,9 @@ on: - 'tools/**' - '.github/workflows/tools.yml' +permissions: + contents: read + jobs: build: name: tools-${{ matrix.os }} |