From 13692967e7c872fcfbc02d278b18e52f782e626e Mon Sep 17 00:00:00 2001 From: Sammy Hori Date: Tue, 3 Oct 2023 17:20:30 +0200 Subject: [PATCH 1/3] Removed Mailpipe from data.json --- data.json | 9 --------- 1 file changed, 9 deletions(-) diff --git a/data.json b/data.json index 28ce1def..2390ea6d 100644 --- a/data.json +++ b/data.json @@ -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", From c880a2530a84f9299137af9b93265435d735d47d Mon Sep 17 00:00:00 2001 From: Sammy Hori Date: Fri, 18 Oct 2024 22:32:33 +0100 Subject: [PATCH 2/3] Change name and email on build.yml This ensures that the GitHub Action commit is not attributed to MunGell when they did not induce it --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9ede61ec..75e18255 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 + From 728ee46fa8de05f7653fb2ef6c7338bc73db0afe Mon Sep 17 00:00:00 2001 From: Sammy Hori Date: Fri, 18 Oct 2024 23:29:39 +0100 Subject: [PATCH 3/3] Added tool for copying other repositories branches to this repository --- make-branch.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 make-branch.sh diff --git a/make-branch.sh b/make-branch.sh new file mode 100755 index 00000000..ceb9404b --- /dev/null +++ b/make-branch.sh @@ -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