We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05d043d commit 68e5876Copy full SHA for 68e5876
.github/workflows/pack-repository.yml
@@ -0,0 +1,29 @@
1
+name: Pack repository with Repomix
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches: [ main ]
7
+ pull_request:
8
9
10
+jobs:
11
+ pack-repo:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v4
16
17
+ - name: Pack repository with Repomix
18
+ uses: yamadashy/repomix/.github/actions/repomix@main
19
+ with:
20
+ output: repomix-output.xml
21
+ style: xml
22
+ compress: true
23
24
+ - name: Upload Repomix output
25
+ uses: actions/upload-artifact@v4
26
27
+ name: repomix-output
28
+ path: repomix-output.xml
29
+ retention-days: 30
0 commit comments