We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baff9e7 commit 7f84c85Copy full SHA for 7f84c85
.github/workflows/mirror.yml
@@ -14,9 +14,12 @@ jobs:
14
run: |
15
git config --global user.email "github-actions@github.com"
16
git config --global user.name "GitHub Action"
17
-
+
18
+ # pull generated files from github profile page and commit them
19
git remote add readmes https://github.com/getlantern/.github.git
20
git fetch readmes
21
git checkout --no-overlay readmes/main -- profile
- git add README* # add every file that starts with README
22
+ mv profile/* .
23
+ rm -rf profile
24
+ git add README*
25
git diff --quiet && git diff --staged --quiet || git commit -m 'fetched from getlantern/.github/profile'; git push
0 commit comments