This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-java.git
The following commit(s) were added to refs/heads/main by this push:
new fad4e142f MINOR: Add missing permission to milestone assignment bot
(#673)
fad4e142f is described below
commit fad4e142f398492533bb1dea32accfcad0a33be8
Author: David Li <[email protected]>
AuthorDate: Mon Jun 2 11:42:45 2025 +0900
MINOR: Add missing permission to milestone assignment bot (#673)
## What's Changed
This step needs permissions to write to issues so we can set the
milestone.
---
.github/workflows/dev_pr.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.github/workflows/dev_pr.yml b/.github/workflows/dev_pr.yml
index 34b3363c5..7352137b0 100644
--- a/.github/workflows/dev_pr.yml
+++ b/.github/workflows/dev_pr.yml
@@ -80,5 +80,9 @@ jobs:
if: '! github.event.pull_request.draft'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ permissions:
+ contents: read
+ issues: write
+ pull-requests: write
run: |
./.github/workflows/dev_pr_milestone.sh "${GITHUB_REPOSITORY}" ${{
github.event.number }}