-
-
Notifications
You must be signed in to change notification settings - Fork 4
34 lines (28 loc) · 1.11 KB
/
yuki-no.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
name: yuki-no
on:
schedule:
- cron: "0 * * * *" # Every hour
workflow_dispatch: # Manual trigger
jobs:
yuki-no:
runs-on: ubuntu-latest
steps:
- uses: Gumball12/yuki-no@v1
with:
# GitHub token for authentication
access-token: ${{ secrets.GITHUB_TOKEN }}
# Upstream repository configuration
head-repo: https://github.com/vitejs/vite
# REQUIRED: Set this to a recent commit hash from vitejs/vite
# Yuki-no will only track commits after this hash.
# Using an old commit hash will cause the initial action run to be very slow
# as it processes each historical commit.
# (Subsequent runs are faster as they skip previously processed commits.)
track-from: <RECENT_COMMIT_HASH> # Replace with a recent commit hash from vitejs/vite
# Files to track (Glob patterns)
include: |
docs/**
# Enable release tracking
# When enabled, Yuki-no will track releases for each issue
# and add comments about release status.
release-tracking: true