Merge-upstream #145
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
# | |
# This is free software, lisence use MIT. | |
# | |
# Copyright (C) 2019 KFERMercer <KFER.Mercer@gmail.com> | |
# | |
# <https://github.com/KFERMercer/OpenWrt-CI> | |
# | |
name: Merge-upstream | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 5 9 * * 5 | |
jobs: | |
merge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
ref: master | |
fetch-depth: 0 | |
lfs: true | |
- name: Update | |
run: | | |
./up.sh | |
git config --global user.email "actions@github.com" | |
git config --global user.name "actions" | |
ARIA2_VER=$(grep 'ARIA2_VER=' $GITHUB_WORKSPACE/dependences | cut -d'=' -f2) | |
git add . && git commit -m "$ARIA2_VER-$(date "+%Y%m%d")" && git push && echo "更新完毕!!!" >> $GITHUB_STEP_SUMMARY || echo "暂无更新!!!" >> $GITHUB_STEP_SUMMARY |