-
Notifications
You must be signed in to change notification settings - Fork 4
Add in tag default file. #344
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
|
This relates to RPOPC-753 |
PullHero ReviewProvider: generativelanguage.googleapis.com Model: gemini-2.0-flash Okay, I will review the proposed changes and provide feedback. AnalysisThe changes introduce a new feature that allows users to override the default cloud tags defined in Key Changes:
Potential Issues and Concerns:
Recommendations
VoteVote: -1 (request changes if significant issues exist) Vote: -1 |
| name=`echo $line | cut -d':' -f 1` | ||
| while IFS= read -r tag_value | ||
| do | ||
| field=`echo $tag_value | cut -d':' -f 1` |
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.
| field=`echo $tag_value | cut -d':' -f 1` | |
| field=`echo "$tag_value" | cut -d':' -f 1` |
| while IFS= read -r tag_value | ||
| do | ||
| field=`echo $tag_value | cut -d':' -f 1` | ||
| echo $field | grep -q $name |
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.
| echo $field | grep -q $name | |
| echo "$field" | grep -q "$name" |
| echo " Jirald: ${1}" >> tags_defaults | ||
| fi | ||
| # | ||
| # If ~/.config/zathras/cloud_tags exsists, replace the various tags. |
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.
| # If ~/.config/zathras/cloud_tags exsists, replace the various tags. | |
| # If ~/.config/zathras/cloud_tags exists, replace the various tags. |
Description
Assigning tags will now check .config/zathras/cloud_tags for tags to assign.
Before/After Comparison
Before: Required the user to always update tags.config to set the tags
After: The user now is able to set the values once in the .config/zathras/cloud_tags file, and the values will be used
everytime
Documentation Check
Yes, updates made.
Clerical Stuff
This closes #342
Relates to JIRA: RPOPC-753