-
Notifications
You must be signed in to change notification settings - Fork 87
fix: remove comment #393
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
fix: remove comment #393
Conversation
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.
Pull Request Overview
This PR improves the GitHub Actions workflow for JIRA issue creation by removing an unnecessary comment and adding a conditional check to prevent commenting on failed JIRA issue creation attempts.
- Removes a comment about assigned teams custom field IDs
- Adds conditional execution to the "Add comment" step to only run when JIRA issue creation succeeds
Pull Request Test Coverage Report for Build 16472856155Details
💛 - Coveralls |
@@ -48,6 +47,7 @@ jobs: | |||
echo "JIRA action result: ${{ steps.create.outputs.issue-key || 'FAILED' }}" | |||
|
|||
- name: Add comment | |||
if: steps.create.outputs.issue-key |
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.
this will never be empty
if: steps.create.outputs.issue-key |
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.
whats the value here #358 (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.
I see the bug, will fix it in https://github.com/mongodb/apix-action
Changes
Checklist