Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Commit

Permalink
Fix vimdoc-ja vim-jp#279
Browse files Browse the repository at this point in the history
  • Loading branch information
mimikun committed Feb 4, 2024
1 parent 0fc5d4e commit 2528baf
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 11,124 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/fix-vimdoc-ja-279.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Fix vimdoc-ja issue 279

on:
push:
branches:
- master

jobs:
autofix:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: autofix
env:
NAME: Yuto Tanaka
EMAIL: 13450321+mimikun@users.noreply.github.com
UPSTREAM: https://github.com/vim-jp/vimdoc-ja.git
run: |
git config --global user.name ${NAME}
git config --global user.email ${EMAIL}
git config --global pull.rebase merges
git remote add upstream ${UPSTREAM}
git fetch upstream
git merge --no-edit --allow-unrelated-histories upstream/master
rm -f doc/tags-ja
echo "doc/tags-ja" > .gitignore
git commit -am "Fix vimdoc-ja #279"
git push -f origin fixed
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
doc/tags-ja
Loading

0 comments on commit 2528baf

Please sign in to comment.