-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
b26a5e7
commit fffeed2
Showing
1 changed file
with
6 additions
and
7 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pull from GEE | ||
name: sync gee repo | ||
|
||
on: | ||
# Allows you to run this workflow manually from the Actions tab | ||
|
@@ -22,13 +22,12 @@ jobs: | |
- name: config git | ||
run: | | ||
git config http.cookiefile ~/.gitcookies | ||
git config http.postBuffer 157286400 | ||
git config user.email "[email protected]" | ||
git config user.name "githubActionAutoMerge" | ||
git config pull.rebase false | ||
git config --global http.cookiefile ~/.gitcookies | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "githubActionAutoMerge" | ||
git config --global pull.rebase false | ||
- name: mirror the gee git repo | ||
- name: sync gee git repo | ||
env: | ||
GEE_REPO: ${{ secrets.GEE_REPO }} | ||
run: | | ||
|