Skip to content
This repository was archived by the owner on Feb 25, 2024. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3a43b1d

Browse files
committedJan 13, 2024
Fix vimdoc-ja vim-jp#279
1 parent bd83d33 commit 3a43b1d

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+
EMAIL: 13450321+mimikun@users.noreply.github.com
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

‎doc/tags-ja

-11,111
This file was deleted.

0 commit comments

Comments
 (0)
This repository has been archived.