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

Commit 2ff2f43

Browse files
committed
Fix vimdoc-ja vim-jp#279
1 parent 30b0cee commit 2ff2f43

File tree

3 files changed

+36
-11111
lines changed

3 files changed

+36
-11111
lines changed
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Fix vimdoc-ja issue 279
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
autofix:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: checkout
13+
uses: actions/checkout@v4
14+
- name: autofix
15+
env:
16+
NAME: Yuto Tanaka
17+
18+
UPSTREAM: https://github.com/vim-jp/vimdoc-ja.git
19+
run: |
20+
git config --global user.name ${NAME}
21+
git config --global user.email ${EMAIL}
22+
23+
git config --global pull.rebase merges
24+
25+
git remote add upstream ${UPSTREAM}
26+
27+
git fetch upstream
28+
29+
git merge --no-edit --allow-unrelated-histories upstream/master
30+
31+
rm -f doc/tags-ja
32+
echo "doc/tags-ja" > .gitignore
33+
git commit -am "Fix vimdoc-ja #279"
34+
35+
git push -f origin fixed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
doc/tags-ja

0 commit comments

Comments
 (0)