Skip to content

fix: report workflow #1148

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions tools/script/get_doc_info.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
#! /bin/bash
#
# ローカルの vimdoc-ja-working/en/*.txt と vim/runtime/doc/*.txt を比較して
# vimdoc-ja-working/en/*.txt(old) と vim/runtime/doc/*.txt(new) を比較して
# 変更行数情報をMarkdownのtable形式でファイルに出力する。
#
# 2018-05-31 h_east
# 2018-05-31 h_east : Create initial file.
# 2022-10-02 Tsuyoshi CHO : Update comment and some settings.

# 自分の環境にあわせて変更する必要がある
# ローカルに利用する場合は自分の環境にあわせて変更する必要がある
# リポジトリには GitHub workflow で利用する設定で格納する
# GitHub workflow では vim/vim は ${GITHUB_WORKSPACE}/vim へ clone している
new_doc_dir=${GITHUB_WORKSPACE}/vim/runtime/doc
old_doc_dir=${GITHUB_WORKSPACE}/vimdoc-ja-working/en
# GitHub workflow では vim-jp/vimdoc-ja-working は ${GITHUB_WORKSPACE}/work へ clone している
old_doc_dir=${GITHUB_WORKSPACE}/work/en

# 出力ファイル名
outf=doc_info.md
Expand Down