# Reviewing Pull Requests These are some of the standard reply templates that you may use while reviewing pull requests and triaging issues. > You can make your own with GitHub's built-in [**Saved replies**](https://github.com/settings/replies/) feature or use the ones below. ### Thank you ```markdown Thank you for your contribution to the page! ๐Ÿ‘ We are happy to accept these changes and look forward to future contributions. ๐ŸŽ‰ ``` ### Thank you and congrats > For thanking and encouraging first-time contributors. ```markdown Hi @username. Congrats on your first pull request (PR)! ๐ŸŽ‰ Thank you for your contribution to the page! ๐Ÿ‘ We are happy to accept these changes and look forward to future contributions. ๐Ÿ“ ``` ### Build Error ```markdown Hey @username We would love to be able to merge your changes but it looks like there is an error with the Travis CI build. โš ๏ธ Once you resolve these issues, We will be able to review your PR and merge it. ๐Ÿ˜Š --- > Feel free to reference the [Style guide for writing articles](https://github.com/freeCodeCamp/freeCodeCamp#article-title) for this repo on formatting an article correctly so your Travis CI build passes. โœ… > > Also, it's good practice on GitHub to write a brief description of your changes when creating a PR. ๐Ÿ“ ``` ### Syncing Fork > When PR is not up to date with the `master` branch. ``````markdown Hey @username We would love to be able to merge your changes but it looks like there is an error with the Travis CI build. โš ๏ธ ```bash Error: ENOTDIR: not a directory, open 'src/pages/java/data-abstraction/index.md' ``` This particular error was not caused by your file but was an old error caused by merging faulty code to the `master` branch. It has since been resolved. To pass the build, you will have to sync the latest changes from the `master` branch of the `freeCodeCamp/freeCodeCamp` repo. Using the command line, you can do this in three easy steps: ```bash git remote add upstream git://github.com/freeCodeCamp/freeCodeCamp.git git fetch upstream git pull upstream master ``` If you're using a GUI, you can simply `Add a new remote...` and use the link `git://github.com/freeCodeCamp/freeCodeCamp.git` from above. Once you sync your fork and pass the build, We will be able to review your PR and merge it. ๐Ÿ˜Š --- > Feel free to reference the [Syncing a Fork](https://help.github.com/articles/syncing-a-fork/) article on GitHub for more insight on how to keep your fork up-to-date with the upstream repository. ๐Ÿ”„ > > Also, it's good practice on GitHub to write a brief description of your changes when creating a PR. ๐Ÿ“ `````` ### Merge Conflicts > When PR has merge conflicts that need to be resolved.ยน ```markdown Hey @username We would love to be able to merge your changes but it looks like you have some merge conflicts. โš ๏ธ Once you resolve these conflicts, We will be able to review your PR and merge it. ๐Ÿ˜Š --- > If you're not familiar with the merge conflict process, feel free to look over GitHub's guide on ["Resolving a merge conflict"](https://help.github.com/articles/resolving-a-merge-conflict-on-github/). ๐Ÿ”๏ธ > > Also, it's good practice on GitHub to write a brief description of your changes when creating a PR. ๐Ÿ“ ``` ยน If a first-time-contributor has a merge conflict, maintainers will resolve the conflict for them. ### Duplicate > When PR is repetitive or a duplicate. ```markdown Hey @username It seems that similar changes have already been accepted earlier for this article you are editing, sorry about that. ๐Ÿ˜“ If you feel you have more to add, please feel free to open up a new PR. Thanks again! ๐Ÿ˜Š --- > If you have any questions, feel free to reach out through [Gitter](https://gitter.im/FreeCodeCamp/Contributors) or by commenting below. ๐Ÿ’ฌ ``` ### Closing invalid pull requests > When PR is invalid. ```markdown Hey @username You have not added any content, We will be closing this PR and marking it as `invalid`. ๐Ÿ˜“๏ธ Feel free to open another PR though! ๐Ÿ‘ ```