Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed Mailpipe from data.json (Closes #1349) #1351

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
run: node .github/scripts/build.js
- name: Commit
run: |
git config --global user.name 'Shmavon Gazanchyan'
git config --global user.email 'MunGell@users.noreply.github.com'
git config --global user.name 'Github Action'
git config --global user.email 'github-action@github.com'
git commit -am "Update README.md"
git push

9 changes: 0 additions & 9 deletions data.json
Original file line number Diff line number Diff line change
Expand Up @@ -1348,15 +1348,6 @@
],
"description": "An interactive TLS-capable intercepting HTTP proxy for penetration testers and software developers"
},
{
"name": "Mailpile",
"link": "https://github.com/mailpile/Mailpile",
"label": "Low-Hanging-Fruit",
"technologies": [
"Python"
],
"description": "A free & open modern, fast email client with user-friendly encryption and privacy features"
},
{
"name": "coala",
"link": "https://github.com/issues?utf8=✓&q=is:open+is:issue+user:coala+label:difficulty/newcomer++no:assignee",
Expand Down
21 changes: 21 additions & 0 deletions make-branch.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

set -euof pipefail

profilename="$1"
projectname="awesome-for-beginners"
branchname="${2:-main}"

fullname="${profilename}/${branchname}"

branchname="${fullname}-branch-copy"

git checkout main
git checkout -b "${branchname}"
git remote add "${profilename}" "https://github.com/${profilename}/awesome-for-beginners.git"
git fetch "${profilename}"
git merge --no-gpg "${fullname}" -m "Merge ${fullname} into ${branchname}"
git remote remove "${profilename}"
git fetch --prune
git push --set-upstream origin "${branchname}"
git checkout main
Loading