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/release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release Pipeline
# Triggers automatically on push to main when any version file changes

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

P2 The top-of-file comment is now inaccurate — it still only mentions main but the trigger has been broadened to include v2.0.0.

Suggested change
# Triggers automatically on push to main when any version file changes
# Triggers automatically on push to main or v2.0.0 when any version file changes

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

on:
push:
branches: ["main"]
branches: ["main", "v2.0.0"]
workflow_dispatch:
inputs:
skip_tests:
Expand Down
Loading