-
-
Notifications
You must be signed in to change notification settings - Fork 14
49 lines (38 loc) · 1.68 KB
/
ryu-cho.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
42
43
44
45
46
47
48
49
name: ryu-cho
on:
# Schedule the interval of the checks.
schedule:
- cron: "*/5 * * * *"
jobs:
ryu-cho:
name: Ryu Cho
runs-on: ubuntu-latest
steps:
- uses: vuejs-translations/ryu-cho@v1
with:
# GitHub access token. Required.
access-token: ${{ secrets.ACCESS_TOKEN }}
# Git user name to use when making issues and PRs. Required.
username: vite/vitejs
# Git email address to use when making issues and PRs. Required.
email: "[email protected]"
# The url for the upstream repo. This is the repository that you
# set up Ryu-Cho. Required.
upstream-repo: https://github.com/vitejs/docs-es.git
# The branch for the upstream repo. Optional. Defaults to `main`.
upstream-repo-branch: main
# The head repo to track. This is the repository you want to
# take a diff. Required.
head-repo: https://github.com/vitejs/vite
# The branch for the head repo. Optional. Defaults to `main`.
head-repo-branch: main
# The git commit sha of head repo to start tracking. Ryu-Cho will
# only track commit from this hash. Required.
track-from: e6b06e535fb26e064f5c341703df4bcb30aa6432
# File path to track. In this example, Ryu-Cho will only track
# commits that modified files under `docs` folder. Optional.
path-starts-with: docs/
# GitHub workflow name that runs Ryu-Cho. This is required since
# Ryu-Cho determines the last run by looking into last workflow
# run timestamp. Optional. Defaults to `ryu-cho`.
workflow-name: ryu-cho