Skip to content

Commit ff4c487

Browse files
authored
Add DevLens health check workflow
1 parent b4984d1 commit ff4c487

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/devlens.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: DevLens Health Check
2+
3+
on:
4+
push:
5+
branches: [main, master]
6+
schedule:
7+
- cron: '0 8 * * 1' # Weekly Monday digest
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@v1
18+
with:
19+
github_token: ${{ secrets.GITHUB_TOKEN }}
20+
groq_api_key: ${{ secrets.GROQ_API_KEY }} # optional — free at console.groq.com
21+
notify_discord: ${{ secrets.DISCORD_WEBHOOK }} # optional

0 commit comments

Comments
 (0)