fix: disable auto README update on DevLens own repo β prevents Groq tβ¦ #31
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: DevLens Health Check | |
| on: | |
| push: | |
| branches: [main, master] | |
| paths-ignore: | |
| - 'README.md' | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| devlens: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - uses: SamoTech/devlens@main | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| groq_api_key: ${{ secrets.GROQ_API_KEY }} | |
| groq_model: 'llama-3.1-8b-instant' | |
| badge_style: flat-square | |
| update_readme: 'false' |