Skip to content

Commit b03ea40

Browse files
authored
Update check-upstream workflow to run daily (#12)
* Update check-upstream workflow to run daily Signed-off-by: Guan-Ming (Wesley) Chiu <105915352+guan404ming@users.noreply.github.com> * Enhance CI workflow to include specific paths Signed-off-by: Guan-Ming (Wesley) Chiu <105915352+guan404ming@users.noreply.github.com> --------- Signed-off-by: Guan-Ming (Wesley) Chiu <105915352+guan404ming@users.noreply.github.com>
1 parent b24d0c1 commit b03ea40

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/check-upstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Check Upstream Updates
22

33
on:
44
schedule:
5-
- cron: '0 9 * * 1'
5+
- cron: '0 9 * * *'
66
workflow_dispatch:
77

88
permissions:

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,20 @@ on:
55
branches: [main]
66
tags:
77
- 'v*'
8+
paths:
9+
- 'src/**'
10+
- 'ts/**'
11+
- 'Cargo.*'
12+
- '.github/workflows/ci.yml'
13+
- '.githooks/**'
814
pull_request:
915
branches: [main]
16+
paths:
17+
- 'src/**'
18+
- 'ts/**'
19+
- 'Cargo.*'
20+
- '.github/workflows/ci.yml'
21+
- '.githooks/**'
1022

1123
jobs:
1224
build-and-test:

0 commit comments

Comments
 (0)