Merge pull request #54 from Celeter/master

增加代码同步
This commit is contained in:
y1ndan 2020-12-29 17:07:26 +08:00 committed by GitHub
commit 06f5cbfb96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,10 @@ on:
- cron: "0 22 * * *" # scheduled at 06:00 (UTC+8) everyday - cron: "0 22 * * *" # scheduled at 06:00 (UTC+8) everyday
workflow_dispatch: workflow_dispatch:
env:
# 是否允许从y1ndan/genshin-impact-helper同步代码
ALLOW_MERGE: 'false'
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -14,9 +18,17 @@ jobs:
- name: Checkout master - name: Checkout master
uses: actions/checkout@v2 uses: actions/checkout@v2
with: with:
repository: y1ndan/genshin-impact-helper
ref: master ref: master
- name: Merge From y1ndan/genshin-impact-helper
if: ${{ env.ALLOW_MERGE != 'false' }}
run: |
git config --global user.name github-actions
git config --global user.email github-actions@github.com
git remote add upstream https://github.com/y1ndan/genshin-impact-helper
git pull upstream master --allow-unrelated-histories
git push origin master
- name: Set up python - name: Set up python
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
@ -26,3 +38,4 @@ jobs:
run: | run: |
pip install -r requirements.txt pip install -r requirements.txt
echo "${{ secrets.COOKIE }}" | tr '#' "\n" | sed 's/$/&#${{ secrets.SCKEY }}/g' | xargs -I {} sh -c 'echo "{}" | python3 ./genshin.py' echo "${{ secrets.COOKIE }}" | tr '#' "\n" | sed 's/$/&#${{ secrets.SCKEY }}/g' | xargs -I {} sh -c 'echo "{}" | python3 ./genshin.py'