Updated Method For Updating The Participation Data #103
iamAyushChamoli
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Up until now, all contributors were being asked to update the participants.js file once their Tier1 or Tier2 contributions got merged. However, this induced a serious problem of frequent merge conflicts that resulted in an inefficient updation. (Refer to Issue #86 )
However, now we've revamped the system that deals with updation of participation data. From now on, contributors don't have to work on the participants.js file at all.
##Here's how participants can update their data from now on:
1: navigate to src/participants
2: Create a new file in .js format
3: import your image from the avatars/img folder using
import <yourname> from "./avatars/img/<your Image Name>.png";in the file you just created.4: Update all the details there of the PR you merged and your details as you normally would in the
const <yourName> = { id: <your ID number>, name: <your name>, university: <Your University Name>, img: your Image, pr: [1], prLink: ['#prLink] }; 5: Finally, export the data from the file using the commandexport default `The CONTRIBUTING.md file will be updated soon to reflect this new method of data updating. Thank you for bearing with us.
Beta Was this translation helpful? Give feedback.
All reactions