-
Notifications
You must be signed in to change notification settings - Fork 0
3月のパッケージアップデート #65
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
3月のパッケージアップデート #65
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 | ||
|---|---|---|---|---|
|
|
@@ -10,15 +10,23 @@ permissions: | |||
| contents: read | ||||
|
|
||||
| jobs: | ||||
| lint: | ||||
| uses: ./.github/workflows/lint.yml | ||||
|
|
||||
| publish: | ||||
| needs: [lint] | ||||
| runs-on: ubuntu-latest | ||||
| permissions: | ||||
| contents: read | ||||
| pull-requests: write | ||||
|
||||
| pull-requests: write |
Copilot
AI
Mar 1, 2026
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.
PR title indicates a package update, but this change also modifies CI/release workflows (adding a lint gate, changing install strategy, and updating permissions). Consider updating the PR title/description to reflect the workflow changes, or split workflow changes into a separate PR for clearer review and rollback.
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.
The workflow-level
permissionsgrantid-token: write, and the new reusable-workflow joblintinherits that permission. If the lint workflow doesn’t need OIDC, set explicit job-level permissions forlint(e.g.,contents: read) and moveid-token: writeto only thepublishjob to follow least-privilege.