Open DeepWiki button link in a new tab with security attributes #15
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pack repository with Repomix | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
pack-repo: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Pack repository with Repomix | |
uses: yamadashy/repomix/.github/actions/repomix@main | |
with: | |
output: repomix-output.xml | |
- name: Upload Repomix output | |
uses: actions/upload-artifact@v4 | |
with: | |
name: repomix-output.xml | |
path: repomix-output.xml | |
retention-days: 30 |