-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,10 +19,12 @@ jobs: | |
run: | | ||
export DATE_STR=`date +"%Y%m%d%I%M%S"` | ||
echo "DATE_STR=$DATE_STR" >> $GITHUB_ENV | ||
- name: Setup git 🪛 | ||
run: | | ||
git config --global user.name github-actions | ||
git config --global user.email [email protected] | ||
- name: Setup git-cinnabar 🪛 | ||
run: | | ||
cd ~ | ||
|
@@ -32,22 +34,26 @@ jobs: | |
export PATH=~/git-cinnabar:$PATH | ||
cd ~ | ||
git cinnabar download | ||
- name: Clone mozilla-unified 🧬 | ||
run: | | ||
export PATH=~/git-cinnabar:$PATH | ||
git clone hg::https://hg.mozilla.org/mozilla-unified | ||
cd mozilla-unified | ||
git rev-list --count origin/bookmarks/esr115 | ||
git checkout -b upstream-esr115-${DATE_STR} origin/bookmarks/esr115 | ||
- name: Fetch Midori 📥 | ||
run: | | ||
cd mozilla-unified | ||
git remote add midori-desktop https://${GITHUB_ACTOR}:${{ github.token }}@github.com/${{ github.repository }} | ||
git fetch midori-desktop | ||
- name: Push 🎁 | ||
run: | | ||
cd mozilla-unified | ||
git push midori-desktop upstream-esr115-${DATE_STR} | ||
- name: Create Pull Request | ||
run: | | ||
cd mozilla-unified | ||
|