Skip to content
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

Update Project Profile: Hackforla.org Website Add Samhitha Kamma #7700

Merged

Conversation

mamypoco
Copy link
Member

@mamypoco mamypoco commented Nov 5, 2024

Fixes #7619

What changes did you make?

URL: https://www.hackforla.org/projects/website
File: _projects/website.md
Section: leadership
Add:
- name: Samhitha Kamma
github-handle: Samhitha444
role: Product Manager
links:
slack: https://hackforla.slack.com/team/U07FF529MU6
github: https://github.com/Samhitha444
picture: https://avatars.githubusercontent.com/Samhitha444

Why did you make the changes (we will use this info to test)?

  • To add new leader so our website is fully synced

Screenshots of Proposed Changes To The Website (if any, please do not include screenshots of code changes)

Visuals before changes are applied

before

Visuals after changes are applied

after

Copy link

github-actions bot commented Nov 5, 2024

Want to review this pull request? Take a look at this documentation for a step by step guide!


From your project repository, check out a new branch and test the changes.

git checkout -b mamypoco-website-add-samhitha-kamma-7619 gh-pages
git pull https://github.com/mamypoco/website.git website-add-samhitha-kamma-7619

@github-actions github-actions bot added good first issue Good for newcomers role: front end Tasks for front end developers role: back end/devOps Tasks for back-end developers P-Feature: Project Info and Page A project's detail page (e.g. https://www.hackforla.org/projects/100-automations) time sensitive Needs to be worked on by a particular timeframe size: 0.25pt Can be done in 0.5 to 1.5 hours labels Nov 5, 2024
@siyunfeng siyunfeng self-requested a review November 5, 2024 06:44
@siyunfeng
Copy link
Member

Review ETA: 11/5/2024 Tuesday
Availability: 6-9 PM Weekdays (EDT)

@ajb176
Copy link
Member

ajb176 commented Nov 5, 2024

ETA: 2 hours

@ajb176 ajb176 self-requested a review November 5, 2024 13:14
Copy link
Member

@ajb176 ajb176 left a comment

Choose a reason for hiding this comment

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

Hi @mamypoco, thanks for working on this issue. Nice work, the project profile entry looks like it's been added as requested. But it looks like there are a few more changes than necessary.

  • Do you have any idea why there's an SSH key in your commit? Make sure to take that out, exposing keys can be dangerous. If this is the same key value you're using to verify your github credentials from your computer, it would be a good idea to delete this key and follow the directions here to create a new one.
  • The commit to the website.md file seems to swap all occurrences of single quotes to double quotes, which isn't necessary. Are you using some kind of formatting tool in your environment that did that automatically?

Lines 82-88 look great and that's all that's necessary in this PR, there shouldn't be any other changes.

If you need help with anything, feel free to reach out.

@mamypoco mamypoco self-assigned this Nov 5, 2024
@mamypoco mamypoco closed this Nov 5, 2024
@mamypoco mamypoco force-pushed the website-add-samhitha-kamma-7619 branch from 1274878 to bda33a8 Compare November 5, 2024 16:47
@mamypoco
Copy link
Member Author

mamypoco commented Nov 5, 2024

Hi @mamypoco, thanks for working on this issue. Nice work, the project profile entry looks like it's been added as requested. But it looks like there are a few more changes than necessary.

  • Do you have any idea why there's an SSH key in your commit? Make sure to take that out, exposing keys can be dangerous. If this is the same key value you're using to verify your github credentials from your computer, it would be a good idea to delete this key and follow the directions here to create a new one.

Sorry, I have no idea: I followed SSH AFTER my good first issue and it was copied in the website directory for some reason. I immediately deleted it as well as the one in the c: drive and from my github SSH setting.

  • The commit to the website.md file seems to swap all occurrences of single quotes to double quotes, which isn't necessary. Are you using some kind of formatting tool in your environment that did that automatically?

Lines 82-88 look great and that's all that's necessary in this PR, there shouldn't be any other changes.

I did git reset and currently working from as brand new branch. I only added the section for Samhitha Kamma. When I saved it, all the section that has single quotes changed double quotes. I was not aware this on my good first issue, which apparently does not have double quotes. Though, do I need to configure VS Code to use single quotes for this project only?

@siyunfeng
Copy link
Member

siyunfeng commented Nov 5, 2024

Hi @mamypoco, thanks for working on this issue. Nice work, the project profile entry looks like it's been added as requested. But it looks like there are a few more changes than necessary.

  • Do you have any idea why there's an SSH key in your commit? Make sure to take that out, exposing keys can be dangerous. If this is the same key value you're using to verify your github credentials from your computer, it would be a good idea to delete this key and follow the directions here to create a new one.

Sorry, I have no idea: I followed SSH AFTER my good first issue and it was copied in the website directory for some reason. I immediately deleted it as well as the one in the c: drive and from my github SSH setting.

  • The commit to the website.md file seems to swap all occurrences of single quotes to double quotes, which isn't necessary. Are you using some kind of formatting tool in your environment that did that automatically?

Lines 82-88 look great and that's all that's necessary in this PR, there shouldn't be any other changes.

I did git reset and currently working from as brand new branch. I only added the section for Samhitha Kamma. When I saved it, all the section that has single quotes changed double quotes. I was not aware this on my good first issue, which apparently does not have double quotes. Though, do I need to configure VS Code to use single quotes for this project only?

Hi @mamypoco, if you have any formatting tool extensions in your VS Code editor, such as Prettier, they could be automatically applied when you save the file. You can go to VS Code settings, type 'format' in the search bar, and click 'Formatting' under 'Text Editor' to check if any settings format your code.

Pushing extra files not unrelated to the PR could be because you use git add ., because git add . will add all the files you modified to the stage. If that's the case, you can use git status to check which files are modified first, and use git add <the file you want to commit> to add the specific file you want to commit to the stage.

@mamypoco
Copy link
Member Author

mamypoco commented Nov 5, 2024

Thank you for your advice.

  • I successfully removed the key from my computer and from my github ssh setting.
  • I changed vscode format to use single quote, and updated the section again.
  • I did git add "_project/website.md", commit then pushed to remote repo.

Can you review this again?

@mamypoco mamypoco removed their assignment Nov 5, 2024
@siyunfeng
Copy link
Member

Thank you for your advice.

  • I successfully removed the key from my computer and from my github ssh setting.
  • I changed vscode format to use single quote, and updated the section again.
  • I did git add "_project/website.md", commit then pushed to remote repo.

Can you review this again?

You closed this PR earlier and I don't see your new pull request. You may need to reopen this pull request before pushing the change you made. You can follow 3.1 How to make a pull request to submit your PR and ensure you push to the right branch.

If it doesn't work, you can create a new branch and submit your PR again. I'll follow up on the original issue to review the new PR.

Let us know if you need help.

@mamypoco mamypoco reopened this Nov 5, 2024
@mamypoco
Copy link
Member Author

mamypoco commented Nov 5, 2024

Hi, I didn't close this PR. Not sure why. I just reopened. Though, will you let me know if I should open new PR?

Copy link
Member

@siyunfeng siyunfeng left a comment

Choose a reason for hiding this comment

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

Great job fixing your PR, @mamypoco !

  • The branch you work on is correct, the branch name is clear
  • The linked issue number is included
  • Availability and ETA are provided
  • The change you made is correct
  • Before-and-after screenshots match the frontend view

Improvements:

  • Lines 69 and 76 shouldn't have any changes, double-check the modified parts before adding to the stage by running git add <file name>.
  • Run git status to check which files are modified before adding any files to the stage before committing and pushing, avoid using git add .
  • Use this format to create a copy board if you need to:
    (```) remove the parentheses before submitting
    copy board content
    (```) remove the parentheses before submitting
    

Thank you for working on this issue!

@siyunfeng
Copy link
Member

siyunfeng commented Nov 5, 2024

Hi, I didn't close this PR. Not sure why. I just reopened. Though, will you let me know if I should open new PR?

Hi @mamypoco , I can see the latest PR you submitted so you don't need to open a new PR. I also reviewed and approved this PR. In order to merge this PR, you will need to re-request @ajb176 to review and approve your latest PR.

Let me know if you have any questions.

@mamypoco
Copy link
Member Author

mamypoco commented Nov 5, 2024

Really appreciate it. It's so odd that I didn't even touch the line 69 and 76. How do I know there is a space before pushing to the repo?

Regarding the copy board, why you are suggesting this?

@mamypoco mamypoco requested a review from ajb176 November 5, 2024 22:46
@siyunfeng
Copy link
Member

siyunfeng commented Nov 5, 2024

Really appreciate it. It's so odd that I didn't even touch the line 69 and 76. How do I know there is a space before pushing to the repo?

Regarding the copy board, why you are suggesting this?

How do I know there is a space before pushing to the repo?

If you open a folder that is a Git repository and begin making changes, VS Code will add useful annotations to the gutter and to the overview ruler.

  • A red triangle indicates where lines have been deleted
  • A green bar indicates new added lines
  • A blue bar indicates modified lines

Regarding the copy board, why you are suggesting this?

That's a formatting syntax to create a copyboard so it's easier to read or for the reviewer to copy the content and compare the change you made. It's a recommendation but not a must.

You can check Basic writing and formatting syntax for further info if you're interested.

Copy link
Member

@ajb176 ajb176 left a comment

Choose a reason for hiding this comment

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

Looks good to me now!

It looks like there are a couple spaces that were removed in different locations, but those shouldn't be there anyway.

Nice work

@LRenDO LRenDO merged commit b64d3ff into hackforla:gh-pages Nov 6, 2024
5 checks passed
@mchait18 mchait18 assigned mchait18 and unassigned mchait18 Nov 6, 2024
@mamypoco mamypoco deleted the website-add-samhitha-kamma-7619 branch November 6, 2024 17:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers P-Feature: Project Info and Page A project's detail page (e.g. https://www.hackforla.org/projects/100-automations) role: back end/devOps Tasks for back-end developers role: front end Tasks for front end developers size: 0.25pt Can be done in 0.5 to 1.5 hours time sensitive Needs to be worked on by a particular timeframe
Projects
Development

Successfully merging this pull request may close these issues.

Update Project Profile: Hackforla.org Website Add Samhitha Kamma
5 participants