mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-30 08:04:10 +00:00
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 715259940776843d8799bc39de8eb50eb764189b)
This commit is contained in:
parent
b3e8d58151
commit
303b784cc8
3
.github/workflows/formal.yml
vendored
3
.github/workflows/formal.yml
vendored
@ -3,6 +3,9 @@ name: Test Formalities
|
|||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Test Formalities
|
name: Test Formalities
|
||||||
|
4
.github/workflows/kernel.yml
vendored
4
.github/workflows/kernel.yml
vendored
@ -7,6 +7,10 @@ on:
|
|||||||
- 'include/kernel-*'
|
- 'include/kernel-*'
|
||||||
- 'package/kernel/**'
|
- 'package/kernel/**'
|
||||||
- 'target/linux/generic/**'
|
- 'target/linux/generic/**'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
determine_targets:
|
determine_targets:
|
||||||
name: Set targets
|
name: Set targets
|
||||||
|
7
.github/workflows/labeler.yml
vendored
7
.github/workflows/labeler.yml
vendored
@ -2,8 +2,15 @@ name: 'Pull Request Labeler'
|
|||||||
on:
|
on:
|
||||||
- pull_request_target
|
- pull_request_target
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
labeler:
|
labeler:
|
||||||
|
permissions:
|
||||||
|
contents: read # to determine modified files (actions/labeler)
|
||||||
|
pull-requests: write # to add labels to PRs (actions/labeler)
|
||||||
|
|
||||||
name: Pull Request Labeler
|
name: Pull Request Labeler
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
3
.github/workflows/tools.yml
vendored
3
.github/workflows/tools.yml
vendored
@ -10,6 +10,9 @@ on:
|
|||||||
- 'tools/**'
|
- 'tools/**'
|
||||||
- '.github/workflows/tools.yml'
|
- '.github/workflows/tools.yml'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-macos-latest:
|
build-macos-latest:
|
||||||
if: github.event_name != 'push'
|
if: github.event_name != 'push'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user