A GitHub Action that parses your repository's code and submits it to CodeAudits.ai for analysis.
This action uses the Repomix library to generate a comprehensive text representation of your codebase and optionally submits it to CodeAudits.ai. This allows you to:
- Create a single document containing your entire codebase in a readable format
- Analyze your code structure and organization
- Submit your code for automated auditing and analysis through CodeAudits.ai
Add the following to your GitHub Actions workflow file:
name: CodeAudits Analysis
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Or use workflow_dispatch to trigger manually
workflow_dispatch:
jobs:
analyze:
runs-on: ubuntu-latest
name: Analyze code with CodeAudits
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for thorough analysis
- name: Parse and submit repository
uses: codeaudits/codeaudits-action@v1
id: audit
with:
style: markdown # Format of the parsed output
compress: true # Enable intelligent code parsing to reduce tokens
push-to-codeaudits: true # Submit to CodeAudits.ai
codeaudits-api-key: ${{ secrets.CODEAUDITS_API_KEY }} # Optional: For private accounts
- name: Upload parsed file as artifact
uses: actions/upload-artifact@v4
with:
name: codebase-analysis
path: parsed-repo.txt
Input | Description | Default | Required |
---|---|---|---|
style |
Parsed document style. Use 'markdown', 'xml' or 'plain' | markdown |
No |
compress |
Run intelligent code parsing to reduce tokens | false |
No |
push-to-codeaudits |
Whether to upload parsed repo to CodeAudits.ai | true |
No |
codeaudits-base-path |
Base URL for the CodeAudits API | https://codeaudits.ai/ |
No |
codeaudits-api-key |
CodeAudits API key for assignment to your private account | - | No |
Output | Description |
---|---|
parse-metadata |
Metadata of the parsed repository |
parsed-file-name |
Name of the parsed output file |
submission-status |
Result of the submission to CodeAudits |
- name: Run CodeAudits Analysis
uses: codeaudits/codeaudits-action@v1
with:
style: markdown
push-to-codeaudits: true
- name: Parse Repository Without Submitting
uses: codeaudits/codeaudits-action@v1
with:
style: markdown
push-to-codeaudits: false
- name: Run CodeAudits Analysis with API Key
uses: codeaudits/codeaudits-action@v1
with:
style: markdown
push-to-codeaudits: true
codeaudits-api-key: ${{ secrets.CODEAUDITS_API_KEY }}
After the action completes:
- The parsed repository will be available as a GitHub Actions artifact named
parsed-repo.txt
- If submission to CodeAudits was enabled, a link to the analysis will be provided in the workflow run summary
- Detailed metadata about the parsing process will be available in the job outputs
When using this action with push-to-codeaudits: true
, your code will be sent to CodeAudits.ai for analysis. If you have concerns about sensitive code, you can:
- Use
push-to-codeaudits: false
to only generate the parsed file without submitting it - Create a
.repomixignore
file to exclude sensitive files from parsing - Use a private instance of CodeAudits with the
codeaudits-base-path
option
This project is licensed under the MIT License - see the LICENSE file for details.