diff --git a/.github/README.md b/.github/README.md deleted file mode 100644 index 72fb8818..00000000 --- a/.github/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# libvterm mirror - -This is a github mirror of https://www.leonerd.org.uk/code/libvterm. The code -is in the branch `mirror`. diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..e96fd528 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + commit-message: + prefix: "ci" diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml index cd71119f..3f6fee8b 100644 --- a/.github/workflows/sync.yml +++ b/.github/workflows/sync.yml @@ -8,7 +8,7 @@ permissions: contents: write jobs: - sync: + mirror: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -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 'marvim@users.noreply.github.com' + + - run: git merge origin/mirror -m "Merge mirror" + - run: git push diff --git a/README.md b/README.md new file mode 100644 index 00000000..d98b8f97 --- /dev/null +++ b/README.md @@ -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`.