Skip to content

Commit 521dd24

Browse files
committed
feat: add DevLens health tracking (markers + workflow)
1 parent 1de24e4 commit 521dd24

2 files changed

Lines changed: 55 additions & 425 deletions

File tree

.github/workflows/devlens.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: DevLens Health Check
2+
3+
on:
4+
push:
5+
branches: [main]
6+
schedule:
7+
- cron: '0 8 * * 1' # Every Monday at 8 AM UTC
8+
9+
permissions:
10+
contents: write
11+
12+
jobs:
13+
devlens:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: SamoTech/devlens@main
18+
with:
19+
github_token: ${{ secrets.GITHUB_TOKEN }}
20+
groq_api_key: ${{ secrets.GROQ_API_KEY }}

0 commit comments

Comments
 (0)