-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Ревертировать "[Хоута] Обновить завивку токенов, чтобы исправить сломанные рабочие процессы" #22882
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,9 +13,6 @@ jobs: | |
| compile: | ||
| name: Update assignees | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| issues: write | ||
| pull-requests: write | ||
| steps: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removing the permissions block may break the PR assignment functionality. The workflow uses an action that likely requires |
||
| - uses: actions/checkout@v4 | ||
| - uses: ./.github/actions/assign-pr | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing these permission blocks might cause the workflow to fail. GitHub Actions uses least-privilege permissions by default, and without explicit
issues: writeandpull-requests: writepermissions, the labeling actions may not have sufficient access to modify labels on PRs.If this is intentional (perhaps as part of a security review), please ensure the workflow still functions correctly after this change.