Skip to content

Commit e74d576

Browse files
committed
chore: watcher yml 파일 추가
1 parent ab8703b commit e74d576

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Merge Risk Watch
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- synchronize
8+
- reopened
9+
- ready_for_review
10+
schedule:
11+
- cron: "0 15 * * 0-4"
12+
workflow_dispatch:
13+
14+
permissions:
15+
contents: read
16+
actions: read
17+
checks: read
18+
pull-requests: read
19+
20+
jobs:
21+
watch:
22+
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false
23+
uses: opficdev/Watcher/.github/workflows/merge-risk-watch.yml@0.1.0
24+
with:
25+
repository: ${{ github.repository }}
26+
base_branch: develop
27+
default_branch: main
28+
critical_file_patterns: |
29+
.github/workflows/**
30+
.github/actions/**
31+
.mise.toml
32+
.package.resolved
33+
Gemfile.lock
34+
Tuist.swift
35+
Workspace.swift
36+
Tuist/ProjectDescriptionHelpers/**
37+
Application/**/Project.swift
38+
Application/Shared/**
39+
Widget/**/Project.swift
40+
fastlane/**
41+
**/*.xcstrings
42+
secrets:
43+
watcher_github_token: ${{ secrets.WATCHER_GITHUB_TOKEN }}
44+
gemini_api_key: ${{ secrets.GEMINI_API_KEY }}
45+
discord_webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL }}

0 commit comments

Comments
 (0)