Compare commits

...

2 Commits

Author SHA1 Message Date
Sammy Hori
728ee46fa8 Added tool for copying other repositories branches to this repository 2024-10-18 23:29:39 +01:00
Sammy Hori
c880a2530a 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
2024-10-18 22:32:33 +01:00
2 changed files with 24 additions and 2 deletions

View File

@@ -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

21
make-branch.sh Executable file
View File

@@ -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