-
Notifications
You must be signed in to change notification settings - Fork 2
Comment PR newly made tags #14
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
base: main
Are you sure you want to change the base?
Conversation
WalkthroughThe pull request updates Changes
Sequence DiagramsequenceDiagram
participant User as GitHub Action Caller
participant Action as Composite Action (action.yml)
participant TagStep as Tagging Step
participant GH as GitHub CLI (gh)
User->>Action: trigger (inputs, including comment-pr)
Action->>TagStep: run tag creation
TagStep-->>Action: outputs.version_tag
alt inputs.comment-pr == true
Action->>GH: run `gh pr comment` (env GH_TOKEN)
GH-->>Action: comment posted
else inputs.comment-pr == false
Action-->>Action: skip pr-update
end
Action-->>User: output `tag.value` = version_tag
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
Warning Review ran into problems🔥 ProblemsErrors were encountered while retrieving linked issues. Errors (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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.
Actionable comments posted: 2
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
Disabled knowledge base sources:
- Jira integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (1)
action.yml(2 hunks)
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Summary by CodeRabbit
comment-prinput to automatically post the newly created tag to the initiating pull request (enabled by default).tagoutput to include the version tag value.