mirror of
https://github.com/yamadashy/repomix.git
synced 2026-05-30 11:18:53 +02:00
a053ad4da7
Revert path filter changes to all workflows except ci.yml to keep the change minimal and maintainable. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
33 lines
749 B
YAML
33 lines
749 B
YAML
name: Pack repository with Repomix
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
pack-repo:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Pack repository with Repomix
|
|
uses: ./.github/actions/repomix
|
|
with:
|
|
output: repomix-output.xml
|
|
|
|
- name: Upload Repomix output
|
|
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
|
|
with:
|
|
name: repomix-output.xml
|
|
path: repomix-output.xml
|
|
retention-days: 30
|