mirror of
https://github.com/shuaiplus/nodewarden.git
synced 2026-06-20 13:00:39 +00:00
35 lines
735 B
YAML
35 lines
735 B
YAML
name: Sync upstream
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 3 * * *"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Configure git
|
|
run: |
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
|
|
- name: Sync main from upstream
|
|
run: |
|
|
git remote add upstream https://github.com/shuaiplus/NodeWarden.git || true
|
|
git fetch upstream
|
|
git checkout main
|
|
git merge upstream/main
|
|
|
|
- name: Push synced main
|
|
run: |
|
|
git push origin main
|