Skip to content

Commit f5d4283

Browse files
bazel-iopnacht
andauthored
[7.0.0] Add top-level permissions to cherry-picker and remove-labels.yml (#20113)
Fixes #20086. As described in the issue, this PR adds read-only permissions to bazel's workflows that don't yet have them. This reduces the risk of supply-chain attacks via the project's CI/CD infrastructure. My understanding is that `cherry-picker.yml` does not require any additional permissions since everything done by `bazelbuild/continuous-integration/actions/cherry_picker` uses the declared `GH_TOKEN` instead of the workflow's default `GITHUB_TOKEN`. If I'm mistaken, let me know and I'll happy fix the PR. Closes #20087. Commit ba61ff7 PiperOrigin-RevId: 580542813 Change-Id: Ib45164ea8d9c0aa583e91d316ad2b552f3c9b5b7 Co-authored-by: Pedro Kaj Kjellerup Nacht <[email protected]>
1 parent ab0da80 commit f5d4283

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/cherry-picker.yml

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
issues:
77
types: [closed, milestoned]
88

9+
permissions:
10+
contents: read
11+
912
env:
1013
GH_TOKEN: ${{ secrets.BAZEL_IO_TOKEN }}
1114

.github/workflows/remove-labels.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ on:
44
pull_request_target:
55
types: ["closed"]
66

7+
permissions:
8+
contents: read
9+
710
jobs:
811
remove-label:
912
permissions:
10-
contents: read
1113
pull-requests: write
1214
runs-on: ubuntu-latest
1315
steps:

0 commit comments

Comments
 (0)