<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Aastha Bist</title>
    <description>The latest articles on DEV Community by Aastha Bist (@bistaastha).</description>
    <link>https://dev.to/bistaastha</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F173601%2Ff7cae8d1-4be3-4af0-aeee-781aa54a87da.jpeg</url>
      <title>DEV Community: Aastha Bist</title>
      <link>https://dev.to/bistaastha</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bistaastha"/>
    <language>en</language>
    <item>
      <title>GSoC with CHAOSS - Final three weeks!</title>
      <dc:creator>Aastha Bist</dc:creator>
      <pubDate>Mon, 24 Aug 2020 19:35:38 +0000</pubDate>
      <link>https://dev.to/bistaastha/gsoc-with-chaoss-final-three-weeks-gj3</link>
      <guid>https://dev.to/bistaastha/gsoc-with-chaoss-final-three-weeks-gj3</guid>
      <description>&lt;p&gt;This is a detailed work report of my last three weeks of GSoC with the CHAOSS Badging project.&lt;/p&gt;

&lt;p&gt;During these three weeks, I worked on writing and bringing Probot bots together for D&amp;amp;I Badging.&lt;/p&gt;

&lt;p&gt;Matt Snell, one of my mentors, took up the task of putting together a frontend of Event Badging which can be accessed through the CHAOSS website. Check it out &lt;a href="https://chaoss.community/diversity-and-inclusion-badging/"&gt;here&lt;/a&gt;!&lt;/p&gt;

&lt;h2&gt;
  
  
  Counter bot
&lt;/h2&gt;

&lt;p&gt;Throughout building different components for this review process, one of the more confusing things has been settling on a method for Badge assignments. Some of the things we have tried have been as follows:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Deliverable based badge assignment&lt;/strong&gt; - Assigning Badges based on the number of deliverables. This was the initial approach, and for Events, it was tweaked a bit to include additional criteria for Events. During the first pilot testing, we discovered that this approach was clumsy, and also, not scalable. Meaning adding new metric information to the checklist or the template would mean editing and decide on a new Badge assignment criteria.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Implementation complexity&lt;/strong&gt; - This approach divided up the checklist items into basic, intermediate, and advanced based on the assumed complexity behind implementing the associated D&amp;amp;I metrics. This approach seemed slightly more scalable than the first one.&lt;br&gt;
It was cumbersome to divide the metrics based on implementation, especially project metrics that were a mixed bag. Like the issue tracker inclusivity metric could include basic checks for assigning labels, but something which is more advanced would be doing relative color coding for similar kinds of labels.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Percentage based badge assignment&lt;/strong&gt; - This is the current approach as of the end of Pilot testing phase two, and this has proved to be simpler and more scalable than the above two approaches. Here, the Badge calculation is left up to a workflow bot, which:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Calculates the overall number of markdown checkmarks in a checklist.&lt;/li&gt;
&lt;li&gt;Calculates the number of checks marked positively by the reviewer, excluding the number of initial checks, since they are assumed to be completely positive before badge calculation.&lt;/li&gt;
&lt;li&gt;Comments appropriate badge one invoking a certain slash command in a GitHub issue.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Here is the implementation of the bot-section that calculates and displays Badges - &lt;a href="https://github.com/bistaastha/badging-bot/blob/master/src/calculateBadge.js"&gt;https://github.com/bistaastha/badging-bot/blob/master/src/calculateBadge.js&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Reviewer Assignment
&lt;/h2&gt;

&lt;p&gt;Automating reviewer assignment allowed for getting a review set up for starting as soon as the reviewers were available to mark their observations. Right now, reviewers can work on a review if they meet the following two technical requirements:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;They are a part of the &lt;code&gt;badging/Reviewers&lt;/code&gt; team, which gives them access to edit bot created checklists.&lt;/li&gt;
&lt;li&gt;Their GitHub username is added to the &lt;code&gt;.github/reviewers.md&lt;/code&gt; in the respective Event or Project repositories.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Reviewer assignment works if both these conditions are met. When an Applicant opens an issue, two usernames would be picked at random from reviewers.md and will be successfully assigned an issue if they are a part of the Reviewers team.&lt;/p&gt;

&lt;p&gt;Here is the implementation of the bot-section for assignment - &lt;a href="https://github.com/bistaastha/badging-bot/blob/master/src/assignReviewers.js"&gt;https://github.com/bistaastha/badging-bot/blob/master/src/assignReviewers.js&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Second pilot testing
&lt;/h2&gt;

&lt;p&gt;From August 17 to August 21, the second pilot testing for D&amp;amp;I Badging took place. The improved front-end was a major contributor to speeding up the process. Also, it meant that the review-flow shifted to issues rather than pull requests, so applicants are no longer required to deal with creating commits, which also reduced the overhead the process had during the first pilot testing.&lt;/p&gt;

&lt;h2&gt;
  
  
  Future work
&lt;/h2&gt;

&lt;p&gt;Going forward, I intend to work on supporting separate checklists for Virtual events and add my final changes to the project badging section.&lt;/p&gt;

&lt;h2&gt;
  
  
  Important links
&lt;/h2&gt;

&lt;p&gt;CHAOSS Badging GitHub organization:&lt;br&gt;
&lt;a href="https://github.com/badging"&gt;https://github.com/badging&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Thanks for reading :)&lt;/p&gt;

</description>
    </item>
    <item>
      <title>GSoC with CHAOSS - Weeks five and six!</title>
      <dc:creator>Aastha Bist</dc:creator>
      <pubDate>Wed, 22 Jul 2020 13:54:58 +0000</pubDate>
      <link>https://dev.to/bistaastha/gsoc-with-chaoss-weeks-five-and-six-41pp</link>
      <guid>https://dev.to/bistaastha/gsoc-with-chaoss-weeks-five-and-six-41pp</guid>
      <description>&lt;p&gt;Hello everyone!&lt;/p&gt;

&lt;p&gt;This is the biweekly report for weeks five and six of GSoC related to the project CHAOSS D&amp;amp;I Badging.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Bot&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;During week 5, I explored what automation could be part of the Badging review process.&lt;/p&gt;

&lt;p&gt;Currently, there is a bot that comments the review checklist and relevant links on different Pull Request events. There are several possibilities for what kind of bots can be integrated into the process. For week five, I explored two different bots:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A bot which can assign reviewers on using a specific slash (example &lt;code&gt;/assign&lt;/code&gt;)command in GitHub comments - This one, while sounding useful at first, is slightly unnecessary at this point since reviewers need Repository Level &lt;code&gt;write&lt;/code&gt; permissions, and that gives them enough access to assign themselves to a PR.&lt;/li&gt;
&lt;li&gt;The second was the bot to generate badges attached to PR link upon commenting a specific slash command and the badge level.
Link - &lt;a href="https://github.com/bistaastha/slash-bot"&gt;https://github.com/bistaastha/slash-bot&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pilot Testing&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Week six was the time for the Pilot Testing of the D&amp;amp;I project. We had three mock applications initiated (2 for Events, and 1 for Projects).&lt;/p&gt;

&lt;p&gt;This lead to gaining invaluable information about some process-related things which did not work that well in reality and need to be reworked or reordered or both in order to be useful.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Review Checklist reframing&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Review Checklists are the reference list for reviewers to check for specific things in the submitted application/links.&lt;/p&gt;

&lt;p&gt;One of the main observations during Pilot Testing was that Qualitative Checks were cumbersome to fill out. I later restructured the Checklists, removing them, leaving only checkboxes followed by what they were for. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Event Review Checklist (revised) - &lt;a href="https://hackmd.io/@7f7uN_UHRtOhM5rnON3_HQ/Byo6owJew"&gt;https://hackmd.io/@7f7uN_UHRtOhM5rnON3_HQ/Byo6owJew&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Project Review Checklist (revised) -&lt;a href="https://hackmd.io/@7f7uN_UHRtOhM5rnON3_HQ/Skqbg0WeD"&gt;https://hackmd.io/@7f7uN_UHRtOhM5rnON3_HQ/Skqbg0WeD&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thanks for reading!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>GSoC with CHAOSS - Weeks three and four</title>
      <dc:creator>Aastha Bist</dc:creator>
      <pubDate>Fri, 10 Jul 2020 13:16:38 +0000</pubDate>
      <link>https://dev.to/bistaastha/gsoc-with-chaoss-weeks-three-and-four-253f</link>
      <guid>https://dev.to/bistaastha/gsoc-with-chaoss-weeks-three-and-four-253f</guid>
      <description>&lt;p&gt;Hello reader!&lt;/p&gt;

&lt;p&gt;This is my second bi-weekly report about my GSoC work with CHAOSS. These last two weeks included writing a new helper bot for CHAOSS Badging. This report will be a new format than the previous ones, not divided chronologically but rather a combination of the work I did during this time.&lt;/p&gt;

&lt;p&gt;So without further delay...&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--krhZ-OE3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/emxqkuopzdablbchi1gp.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--krhZ-OE3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/emxqkuopzdablbchi1gp.gif" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let's get started!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Templates, checklists and reframing&lt;/strong&gt;&lt;br&gt;
These last two weeks were about finalizing templates that the applicants would interact with, and the checklists the reviewers would interact with.&lt;br&gt;
With &lt;a href="https://github.com/badging/event-diversity-and-inclusion/"&gt;Event Criteria&lt;/a&gt; came the new question about badge levels, since all Events are not created equal in terms of metric criteria they would fulfill. For now, we are considering only two Badge levels for Events, pending and passing&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Enter the bot&lt;/strong&gt;&lt;br&gt;
Automation is going to be something that I'll be primarily focusing on in the month of July. For now, to help out with the process (reducing manual work of copying and pasting the Markdown lists from one place to another), I wrote out this small bot called &lt;code&gt;list-bot-test&lt;/code&gt;, which does the following things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;When a PR is opened, it greets the applicant using content from &lt;code&gt;.github/applicant-welcome.md&lt;/code&gt; of the repository the bot is installed on.&lt;/li&gt;
&lt;li&gt;Admins / Owners of the repository (as of now) manually assign reviewers.&lt;/li&gt;
&lt;li&gt;A checklist is generated for the assignee (tagging them by username), who has been beforehand given &lt;code&gt;write&lt;/code&gt; level or collaborator access to the repository.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Link to the source code - &lt;a href="https://github.com/bistaastha/list-bot-test"&gt;https://github.com/bistaastha/list-bot-test&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Coming up next...&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Bots which do certain things on being called by a slash commands&lt;/li&gt;
&lt;li&gt;Pilot testing for the CHAOSS Badging program.&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>GSoC with CHAOSS: First two weeks!</title>
      <dc:creator>Aastha Bist</dc:creator>
      <pubDate>Wed, 17 Jun 2020 14:26:34 +0000</pubDate>
      <link>https://dev.to/bistaastha/gsoc-work-report-one-4gpi</link>
      <guid>https://dev.to/bistaastha/gsoc-work-report-one-4gpi</guid>
      <description>&lt;p&gt;Hello reader!&lt;/p&gt;

&lt;p&gt;This is going to be a biweekly work report of my work in first two weeks of Google Summer of Code with &lt;a href="https://chaoss.community/"&gt;CHAOSS&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Now onto the report...
&lt;/h2&gt;

&lt;p&gt;These two weeks focused on more of CHAOSS Badging content related to reviewers, and later came back to applicants.&lt;/p&gt;

&lt;h3&gt;
  
  
  Week two [June 8 - June 15]
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;Event Review Checklist and Applicant questions&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Having built the basics of the criteria for Event Reviews, I started working on a checklist which would work out for events.&lt;/p&gt;

&lt;p&gt;The initial point for these questions was earlier PR templates. Here are some pointers I used for reframing everything:&lt;/p&gt;

&lt;p&gt;What the applicant questions have to be about?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Asking for relevant and necessary links which direct reviewers to the resources they can look into to evaluate a CHAOSS Badging application&lt;/li&gt;
&lt;li&gt;Asking for previous work done by the applicant (Event organiser / Project maintainer) or others to make the Project/Event space more inclusive.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What reviewer questions have to be about?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Checking if the links for all necessary document are already in place&lt;/li&gt;
&lt;li&gt;Quantitative assessments [bunch of checkboxes] about what the application fulfills, and qualitative feedback about what could be improved.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Associated links:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Event review checklist - &lt;a href="https://gist.github.com/bistaastha/0c518c76960aad11bf95cce1f9dee6f6"&gt;https://gist.github.com/bistaastha/0c518c76960aad11bf95cce1f9dee6f6&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Revised Project template - 
&lt;a href="https://github.com/bistaastha/project-diversity-and-inclusion/blob/latest/.github/PULL_REQUEST_TEMPLATE.md"&gt;https://github.com/bistaastha/project-diversity-and-inclusion/blob/latest/.github/PULL_REQUEST_TEMPLATE.md&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;WIP Event template - 
&lt;a href="https://hackmd.io/@7f7uN_UHRtOhM5rnON3_HQ/Skb29sQpU"&gt;https://hackmd.io/@7f7uN_UHRtOhM5rnON3_HQ/Skb29sQpU&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Week one [June 1 - June 7]
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;Project checklist, Event criteria and reading back and forth through things&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;For the CHAOSS Badging process, there are going to be at least five D&amp;amp;I metric deliverables which will need to be met for each Project review. To keep track of this information and the milestones an application will need to clear in order to be assigned a suitable badge, the concept (and content) of a Review Checklist is used.&lt;/p&gt;

&lt;p&gt;The inspiration for this comes from Journal of Open Source Software reviews (more about their checklists &lt;a href="https://joss.readthedocs.io/en/latest/review_checklist.html"&gt;here&lt;/a&gt;). These checklists can be built in a way that would determine application eligibility, the path a review will take and what deliverables will be met at the same time.&lt;/p&gt;

&lt;p&gt;Focusing on the deliverables, and working over questions asked to applicants on PR templates, I split out each deliverable under the review checklist in two parts: quantitative and qualitative.&lt;/p&gt;

&lt;p&gt;As of now quantitative questions can be answered either as a yes or no, while qualitative questions are more about bringing what a reviewer thinks about the application (and what more it requires) in front of an Applicant.&lt;/p&gt;




&lt;p&gt;Second part, Event Criteria is more about how events will be evaluated. Since all event related metrics won't be applicable in all cases, we thought dividing them up in different, progressive sections would make sense for Event Reviews. Later, during the weekly meeting, Matt assigned different scales to each criteria.&lt;/p&gt;

&lt;p&gt;Associated links:&lt;br&gt;
Project Checklist - &lt;a href="https://gist.github.com/bistaastha/b7b7c8ca2139113f9cd7c58a7fa3177b"&gt;https://gist.github.com/bistaastha/b7b7c8ca2139113f9cd7c58a7fa3177b&lt;/a&gt;&lt;br&gt;
WIP Event Criteria - &lt;a href="https://hackmd.io/@7f7uN_UHRtOhM5rnON3_HQ/H1NFDGn2L"&gt;https://hackmd.io/@7f7uN_UHRtOhM5rnON3_HQ/H1NFDGn2L&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading! You can also check out my community bonding report which is live &lt;a href="https://dev.to/bistaastha/gsoc-with-chaoss-community-bonding-reports-54g0"&gt;here&lt;/a&gt;.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>GSoC with CHAOSS - Community Bonding reports</title>
      <dc:creator>Aastha Bist</dc:creator>
      <pubDate>Mon, 15 Jun 2020 18:14:51 +0000</pubDate>
      <link>https://dev.to/bistaastha/gsoc-with-chaoss-community-bonding-reports-54g0</link>
      <guid>https://dev.to/bistaastha/gsoc-with-chaoss-community-bonding-reports-54g0</guid>
      <description>&lt;p&gt;Hello reader!&lt;/p&gt;

&lt;p&gt;These are my combined Community Bonding reports related to my GSoC work with CHAOSS.&lt;/p&gt;

&lt;p&gt;TL;DR: I had four awesome weeks figuring out more about my project.&lt;/p&gt;

&lt;p&gt;Here is the week by week summary for everything under community bonding period :)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Week one [May 5 - May 11]&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This week I focused on taking out things out of my proposed work plan and arrange them in the form of issues and to-do lists.&lt;/p&gt;

&lt;p&gt;After taking around 48 hours processing that my proposal was selected, explaining to my family what GSoC was and maybe a little bit of excited squealing somewhere in that time, I attended my first meetings on Wednesday as a GSoC student!&lt;/p&gt;

&lt;p&gt;From there on mentors Matt S. and Saleh spread out the meeting schedule for CHAOSS Badging work for me and Tola, and Matt G. welcomed us on the D&amp;amp;I WG meeting.&lt;/p&gt;

&lt;p&gt;On the meeting, we worked on a portion of Documentation Accessibility abd discussed Badging, and how the GitHub interface might potentially end up hindering non-developer applicants.&lt;/p&gt;




&lt;p&gt;Workflow management is an important thing here, and milestones on GitHub work well for me. Starting on I divided my tasks into lists and further created issues to keep track of progress and additional considerations. Also, I created user stories to gain a better sense about expectations and inferences related to CHAOSS Badging, and I would be making changes to them frequently in the near future. &lt;/p&gt;

&lt;p&gt;There were a bunch of tasks from the proposal which live as issues &lt;a href="https://github.com/bistaastha/badging-meta/issues"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Our work and community experience during the rest of the week was discussed on the Sunday Badging Session, where I asked a bunch of questions we had acquired.&lt;/p&gt;

&lt;p&gt;Overall, this week was super positive, and this makes me even more excited about the things to come.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Week two [May 12 to May 18]&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This week I started working on roles, and on exploring a bit about how Probot based GitHub apps could become a part of the CHAOSS Badging workflow and speed it up.&lt;/p&gt;

&lt;p&gt;Roles for CHAOSS Badging is basically categorising participants according to what they would usually do within the Badging workflow. I divided each role into two parts:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Responsibilities - what a certain kind of participant would at least be required to do in the process&lt;/li&gt;
&lt;li&gt;GitHub permissions - what things they would be able to do on the GitHub interface&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://help.github.com/en/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization"&gt;Repository permission levels&lt;/a&gt; allow for a more granular approach to what a member of a team on an organisation account GitHub would or would not be able to do on any certain repository, and there are certain levels defined for each role.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Week three and four [May 19 to May 31]&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;During this time I worked on reading more about how JOSS reviews worked, and then creating guidelines for Badging project reviews based on CHAOSS metrics. In the current form, the requirements state what a Project associated with an application would need to have at the minimum. This also lead to the beginnings of work on Review Checklist, which would be something a reviewer would compare with and mark their observations over.&lt;/p&gt;

&lt;p&gt;To simplify roles created during the past week, Matt S. suggested that the permissions required for Badging can be represented in a simpler table. There are two parts to this represetation: the things a person in a perticular role would do under the Badging process and the things they would likely have the ability to do.&lt;/p&gt;

&lt;p&gt;Associated links:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Roles permission table: &lt;a href="https://docs.google.com/document/d/1W_W5IaAEm1cxigjtIaCXrVNz7yryr76oATCy4LdG3HE/edit"&gt;Google Docs&lt;/a&gt; | &lt;a href="https://github.com/bistaastha/project-diversity-and-inclusion/tree/latest/submission"&gt;GitHub&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Submission Guidelines: &lt;a href="https://github.com/bistaastha/project-diversity-and-inclusion/tree/latest/submission"&gt;https://github.com/bistaastha/project-diversity-and-inclusion/tree/latest/submission&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Review Checklist in a Gist: &lt;a href="https://gist.github.com/bistaastha/b7b7c8ca2139113f9cd7c58a7fa3177b"&gt;https://gist.github.com/bistaastha/b7b7c8ca2139113f9cd7c58a7fa3177b&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
  </channel>
</rss>
