Files
repomix-mirror/.github/workflows/pack-repository.yml
Kazuki Yamada a053ad4da7 chore(ci): Scope down to ci.yml only
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>
2026-04-05 22:06:59 +09:00

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