Add setting for inner combing distance to walls #1454
This file contains 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: 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 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup the build environment | |
uses: ultimaker/cura-workflows/.github/actions/setup-build-environment@main | |
- uses: greguintow/get-diff-action@v7 | |
with: | |
PATTERNS: | | |
resources/+(definitions|extruders)/*.def.json | |
resources/+(intent|quality|variants)/**/*.inst.cfg | |
- name: Format file | |
if: env.GIT_DIFF && !env.MATCHED_FILES | |
run: python printer-linter/src/terminal.py --format ${{ env.GIT_DIFF_FILTERED }} | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
if: env.GIT_DIFF && !env.MATCHED_FILES | |
with: | |
commit_message: "Applied printer-linter format" |