-
Notifications
You must be signed in to change notification settings - Fork 1
3月のパッケージアップデート #62
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月のパッケージアップデート #62
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 | ||||||||||
| id-token: write | ||||||||||
|
Comment on lines
+19
to
+22
|
||||||||||
| permissions: | |
| contents: read | |
| pull-requests: write | |
| id-token: write |
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.
publishnow waits on the reusablelintworkflow, which runs on macOS and Windows. This will significantly increase release latency and runner cost for every push tomain; if the goal is only a pre-publish sanity check, consider calling a lighter-weight lint job (e.g., Ubuntu-only) or splitting the workflow so cross-OS lint remains on PRs while publish gates on a faster check.