Skip to content

Sync with upstream

Sync with upstream #1

Workflow file for this run

name: Sync with upstream
on:
schedule:
- cron: "0 */6 * * *"
workflow_dispatch:
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: vim
fetch-depth: 0
- name: Rebase onto upstream/dev
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git remote add upstream https://github.com/sst/opencode.git
git fetch upstream dev
git rebase upstream/dev
- name: Push
run: git push --force-with-lease origin vim