-
Notifications
You must be signed in to change notification settings - Fork 33
36 lines (30 loc) · 1.18 KB
/
sync.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
name: yuki-no
on:
schedule:
- cron: "0 * * * *" # Every hour
workflow_dispatch: # Manual trigger (Optional)
jobs:
yuki-no:
runs-on: ubuntu-latest
steps:
- uses: Gumball12/yuki-no@v1
with:
# GitHub access token. Required.
access-token: ${{ secrets.GITHUB_TOKEN }}
# The head repo to track. This is the repository you want to
# take a diff. Required.
head-repo: https://github.com/vitejs/vite.git
# The git commit sha of head repo to start tracking. Yuki-no will
# only track commit from this hash. Required.
track-from: 14027b0f2a9b01c14815c38aab22baf5b29594bb
# List of file patterns to track. Multiple patterns can be specified
# with newlines. Files matching these glob patterns will be included
# in tracking.
# If empty, all files will be tracked. Optional.
include: |
docs/**
# Whether to enable release tracking.
# When enabled, Yuki-no will track releases for each issue
# and add comments about release status. Optional.
# Defaults to 'false'
release-tracking: true