Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 825 Bytes

File metadata and controls

25 lines (21 loc) · 825 Bytes

FixGuy

License: AGPL v3 Build Status GitHub release

Automated code quality fixes for Python, JavaScript, TypeScript, Java, and Go.

Usage

Add this to your .github/workflows/fixguy.yml:

name: Run FixGuy
on:
  schedule:
    - cron: "0 0 * * 0"  # Weekly on Sunday
  workflow_dispatch:
jobs:
  fixguy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: CyberSage5/fixguy@v1.0.6
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}