这是indexloc提供的服务,不要输入任何密码
Skip to content

Sync upstream

Sync upstream #55

Workflow file for this run

name: Sync upstream
on:
schedule:
- cron: '0 2 * * *'
workflow_dispatch:
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
git remote add upstream https://github.com/shuaiplus/NodeCrypt.git
git fetch upstream
git checkout main
git merge --ff-only upstream/main || git merge upstream/main --no-edit
git push origin main