- You cannot contribute to a repository that you have contributed to 10 times
- You can review PRs in repositories you do not maintain
- All of your contributions should not be of one type
- All of your contributions should not be in one repo/organisation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.querySelectorAll('.js-delete-label').forEach(form => form.querySelector('button').click()) | |
const labels = (await ((await fetch('https://github.com/krshoss/repo-labels/raw/main/labels.json')).json())) | |
function createLabel(label) { | |
document.querySelector(".js-new-label-name-input").value = label.name; | |
document.querySelector(".js-new-label-description-input").value = | |
label.description; | |
document.querySelector(".js-new-label-color-input").value = label.color; | |
document.querySelector(".js-details-target ~ .btn-primary").disabled = false; |
-
Join the MLH Discord Server: discord.gg/mlh
-
Go to discord.mlh.io
๐ Screenshot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const crypto = require('crypto') | |
module.exports = (pass) => { return crypto.hash(pass) } |