Skip to content
This repository was archived by the owner on May 1, 2025. It is now read-only.

Commit 96a34bb

Browse files
committed
cfg: ryu-cho
1 parent c06f56f commit 96a34bb

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

.github/workflows/ryu-cho.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: ryu-cho
2+
3+
on:
4+
# Schedule the interval of the checks.
5+
schedule:
6+
- cron: '*/5 * * * *'
7+
8+
jobs:
9+
ryu-cho:
10+
name: Ryu Cho
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: vuejs-translations/ryu-cho@v1
14+
with:
15+
# GitHub access token. Required.
16+
access-token: ${{ secrets.ACCESS_TOKEN }}
17+
18+
# Git user name to use when making issues and PRs. Required.
19+
username: Ubugeeei
20+
21+
# Git email address to use when making issues and PRs. Required.
22+
email: ubuge1122@gmail.com
23+
24+
# The url for the upstream repo. This is the repository that you
25+
# set up Ryu-Cho. Required.
26+
upstream-repo: https://github.com/vuejs-jp/learn.nuxt.com
27+
28+
# The branch for the upstream repo. Optional. Defaults to `main`.
29+
upstream-repo-branch: main
30+
31+
# The head repo to track. This is the repository you want to
32+
# take a diff. Required.
33+
head-repo: https://github.com/nuxt/learn.nuxt.com
34+
35+
# The branch for the head repo. Optional. Defaults to `main`.
36+
head-repo-branch: main
37+
38+
# The git commit sha of head repo to start tracking. Ryu-Cho will
39+
# only track commit from this hash. Required.
40+
track-from: c06f56f55a69e292d3975f83e148d299be0f8e1c
41+
42+
# File path to track. In this example, Ryu-Cho will only track
43+
# commits that modified files under `docs` folder. Optional.
44+
path-starts-with: ./
45+
46+
# GitHub workflow name that runs Ryu-Cho. This is required since
47+
# Ryu-Cho determines the last run by looking into last workflow
48+
# run timestamp. Optional. Defaults to `ryu-cho`.
49+
workflow-name: ryu-cho

0 commit comments

Comments
 (0)