Merge pull request #1776 from h-east/update-builtin #817
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update report | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'en/**' | |
schedule: | |
- cron: '30 15 * * SAT' | |
workflow_dispatch: | |
permissions: | |
issues: write | |
jobs: | |
report: | |
name: Update help diff report | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get current time | |
uses: 1466587594/get-current-time@v2 | |
id: current-time | |
- name: Checkout vimdoc-ja-working | |
uses: actions/checkout@v4 | |
with: | |
path: work | |
- name: Checkout vim | |
uses: actions/checkout@v4 | |
with: | |
repository: vim/vim | |
path: vim | |
- name: Build report | |
run: | | |
bash work/tools/script/get_doc_info.sh | |
echo Update ${{ steps.current-time.outputs.ISOTime }} >> doc_info.md | |
- name: Create or Update issue | |
uses: peter-evans/create-issue-from-file@v5 | |
with: | |
title: 'Vim help : number of untranslated lines diff status' | |
content-filepath: ./doc_info.md | |
issue-number: 968 | |
# issue-number: if removed, create new issue/if define issue num, update numbered issue. |