Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/npm-release-ops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release

on:
push:

Copilot AI Apr 14, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

on: push: is currently configured with a null/empty value. While GitHub Actions often treats this like an unfiltered push trigger, it’s ambiguous and easy to misread. Consider making it explicit (e.g., push: {} or using the short form on: [push, workflow_dispatch]) to avoid YAML/Actions parsing surprises and improve clarity.

Suggested change
push:
push: {}

Copilot uses AI. Check for mistakes.
branches: [main]
workflow_dispatch:

permissions:
contents: write
Expand Down
Loading