mirror of
https://github.com/lobehub/lobe-chat.git
synced 2026-06-13 19:20:04 +00:00
8ab5ec5364
fix(workflow): fix Upstream Sync workflow running error
30 lines
736 B
YAML
30 lines
736 B
YAML
name: Upstream Sync
|
|
|
|
permissions:
|
|
contents: write
|
|
issues: write
|
|
actions: write
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 */6 * * *' # every 6 hours
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
sync_latest_from_upstream:
|
|
name: Sync latest commits from upstream repo
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.repository.fork }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Sync upstream changes
|
|
id: sync
|
|
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4
|
|
with:
|
|
upstream_sync_repo: lobehub/lobehub
|
|
upstream_sync_branch: main
|
|
target_sync_branch: main
|
|
target_repo_token: ${{ secrets.GITHUB_TOKEN }} # automatically generated, no need to set
|
|
test_mode: false |