-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (27 loc) · 868 Bytes
/
repomix.yml
File metadata and controls
30 lines (27 loc) · 868 Bytes
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
name: Repomix
on:
push:
branches: [master]
workflow_dispatch:
permissions:
contents: write
jobs:
pack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
- run: npx -y repomix --style markdown --output llms-full.txt --ignore llms-full.txt
- name: Commit llms-full.txt
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add llms-full.txt
if git diff --cached --quiet; then
echo "No changes to llms-full.txt"
exit 0
fi
git commit -m "chore: regenerate llms-full.txt"
git push