123456789101112131415161718192021 |
- name: printer-linter-format
- on:
- push:
- paths:
- - 'resources/definitions/**'
- - 'resources/extruders/**'
- - 'resources/intent/**'
- - 'resources/quality/**'
- - 'resources/variants/**'
- jobs:
- printer-linter-format:
- name: Printer linter auto format
- uses: ultimaker/cura-workflows/.github/workflows/lint-formatter.yml@main
- with:
- file_patterns: |
- resources/+(definitions|extruders)/*.def.json
- resources/+(intent|quality|variants)/**/*.inst.cfg
- command: python printer-linter/src/terminal.py --format
- commit_message: "Apply printer-linter format"
|