Skip to content

Commit

Permalink
Change branch to a fork structure instead of pure mirror.
Browse files Browse the repository at this point in the history
  • Loading branch information
dundargoc committed Nov 19, 2023
1 parent 909603c commit ee614e4
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 5 deletions.
4 changes: 0 additions & 4 deletions .github/README.md

This file was deleted.

8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: "ci"
18 changes: 17 additions & 1 deletion .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions:
contents: write

jobs:
sync:
mirror:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -26,3 +26,19 @@ jobs:
- run: |
git push --force-with-lease
git push --tags
nvim:
runs-on: ubuntu-latest
needs: mirror
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up git config
run: |
git config --global user.name 'marvim'
git config --global user.email '[email protected]'
- run: git merge origin/mirror -m "Merge mirror"
- run: git push
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# libvterm fork

This is a fork of https://www.leonerd.org.uk/code/libvterm. An exact mirror
of upstream is in the branch `mirror`.

0 comments on commit ee614e4

Please sign in to comment.