-
-
Notifications
You must be signed in to change notification settings - Fork 90
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
chore: temporarily disable release-please #1074
Conversation
WalkthroughWalkthroughThis update modifies the project's workflow by deactivating specific branch triggers. Previously, the workflow would initiate based on activity in certain branches, but with this change, those triggers have been commented out. This means that the workflow will no longer automatically start based on changes to those branches, streamlining the process or focusing it on other triggers. Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
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.
branches: [] | ||
# branches: | ||
# - main # Your main branch | ||
# - dev # Your development branch | ||
# - release/* # Your releases branch | ||
# - v2 # Temp V2 integration branch |
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 branch-specific triggers for the workflow have been commented out, effectively disabling the automated process for generating changelogs and managing releases. While this achieves the objective of temporarily halting these processes, consider the following points for future reference:
- Documentation: It's important to document the reason for such changes within the workflow file or in a linked issue for clarity and future reference. This helps in understanding the context and rationale behind temporary changes.
- Alternative Approaches: If the disablement is intended to be temporary, consider using conditional checks within the workflow to enable or disable certain steps based on environment variables or repository settings. This approach can offer more flexibility and control without needing to comment out code.
- Notification: Ensure that relevant stakeholders or teams are notified about this change, especially if it impacts the release process or the generation of changelogs that they might depend on.
Summary by CodeRabbit