-
Notifications
You must be signed in to change notification settings - Fork 64
41 lines (40 loc) · 1.09 KB
/
report.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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.