User Tools

Site Tools


evergreen-docs:github-workflow

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
evergreen-docs:github-workflow [2021/05/28 18:35] – small syntax fix sandbergjaevergreen-docs:github-workflow [2022/05/12 09:23] – review github's built docs, rather than compiling the docs yourself sandbergja
Line 3: Line 3:
 When someone [[evergreen-docs:how-to-contribute-documentation#intermediate_workflow|submits a change via GitHub]], an Evergreen developer should follow these steps to review it: When someone [[evergreen-docs:how-to-contribute-documentation#intermediate_workflow|submits a change via GitHub]], an Evergreen developer should follow these steps to review it:
  
-  Note how many new commits are in the pull request -- you will need this information later. +===== Reviewing the pull request ===== 
-  - If you haven't yet, add the main Evergreen repo (on GitHub) as a remote+ 
 +  [[https://github.com/login|Log in to Github]] 
 +  - Open the pull request in the Github web interface. 
 +  - Open the Files Changed tab 
 +  - Make sure the asciidoc changes look good 
 +  - Open the Checks tab 
 +  - Expand the "Generate Docs Package" step.  Glance for any unexpected warnings or errors. 
 +  - Open the Artifacts menu and select built-docs 
 +  - Unzip the artifact and open it in your browser. 
 +  - Check to make sure that the expected changes look good in the built docs, and that there are no unexpected changes. 
 + 
 + 
 +===== Committing the changes ===== 
 + 
 +If everything looks good: 
 + 
 +  - On the commits tab, note how many new commits are in the pull request -- you will need this information later. 
 +  - In your terminal, if you haven't yet, add the main Evergreen repo (on GitHub) as a remote
     - ''%%git remote add github-evergreen https://github.com/evergreen-library-system/Evergreen.git%%''     - ''%%git remote add github-evergreen https://github.com/evergreen-library-system/Evergreen.git%%''
   - Update your local master branch to reflect any changes from "origin"   - Update your local master branch to reflect any changes from "origin"
Line 12: Line 29:
   - Cherry pick the relevant commits into your local copy of the master branch.   - Cherry pick the relevant commits into your local copy of the master branch.
     - If only one commit: ''git cherry-pick -s [BRANCHNAME]''     - If only one commit: ''git cherry-pick -s [BRANCHNAME]''
-    - If more than one: ''git cherry-pick -s [BRANCHNAME]~[Number of commits]..[BRANCHNAME]'' (for example, if you are bringing in two commits from the survey-docs branch, run ''git cherry-pick survey-docs~2..survey-docs)'' +    - If more than one: ''%%git cherry-pick -s [BRANCHNAME]~[Number of commits]..[BRANCHNAME] --edit%%'' (for example, if you are bringing in two commits from the survey-docs branch, run ''%%git cherry-pick survey-docs~2..survey-docs) --edit%%'' 
-  - Test build the changed AsciiDoc file + the nav.adoc file(s) that include it +      The ''%%--edit%%'' flag will permit you to edit all commit messages as they come in.
-    - ''%%perl ./generate_docs.pl --base-url http://examplesite.org/prod%%'' +
-    - Check to see if there are any images posted to the Github conversation that have not been committed yet Add those to ''Evergreen/docs/modules/<module_name>/assets/images/media/'' +
-    - Also look for other AsciiDoc warnings or errors+
   - Make any corrections (via additional commits, if needed)   - Make any corrections (via additional commits, if needed)
   - Use ''git log'' to make sure everything looks good.   - Use ''git log'' to make sure everything looks good.
Line 25: Line 39:
   - When you are confident your local master branch is ready: ''git push origin master''   - When you are confident your local master branch is ready: ''git push origin master''
   - Backport to previous EG versions as appropriate   - Backport to previous EG versions as appropriate
-    - ''git checkout rel_3_8''+    - ''git checkout rel_3_8'' (where rel_3_8 is the branch for previous version) 
 +    - ''git pull'' (to get the most up-to-date version of the branch)
     - If one commit: ''git cherry-pick master''     - If one commit: ''git cherry-pick master''
     - If more than one: ''git cherry-pick master~[Number of commits]..master''     - If more than one: ''git cherry-pick master~[Number of commits]..master''
 +    - ''git push''
   - Go back to the pull request on Github's site.  Comment on the pull request to thank the contributor, then close the pull request.   - Go back to the pull request on Github's site.  Comment on the pull request to thank the contributor, then close the pull request.
evergreen-docs/github-workflow.txt · Last modified: 2023/12/28 15:54 by aneiman

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki

© 2008-2022 GPLS and others. Evergreen is open source software, freely licensed under GNU GPLv2 or later.
The Evergreen Project is a U.S. 501(c)3 non-profit organization.