Skip to content

Commit

Permalink
Merge branch 'main' into CURA-12236_expose-preferred-travel-area-in-c…
Browse files Browse the repository at this point in the history
…ombing
  • Loading branch information
wawanbreton authored Dec 17, 2024
2 parents 3244e4f + dd8f8b8 commit dd95496
Showing 1 changed file with 7 additions and 36 deletions.
43 changes: 7 additions & 36 deletions .github/workflows/lint-formatter.yml
Original file line number Diff line number Diff line change
@@ -1,46 +1,17 @@
name: lint-formatter

on:
workflow_dispatch:

push:
paths:
- 'include/**/*.h*'
- 'src/**/*.c*'

pull_request:
types: [ opened ]
paths:
- 'include/**/*.h*'
- 'src/**/*.c*'

jobs:
lint-formatter-job:
name: Auto-apply clang-format

runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: greguintow/get-diff-action@v7
with:
PATTERNS: |
include/**/*.h*
src/**/*.c*
- name: Setup Python and pip
if: env.GIT_DIFF && !env.MATCHED_FILES # If nothing happens with python and/or pip after, the clean-up crashes.
uses: actions/setup-python@v5
with:
python-version: 3.11.x
cache: 'pip'
cache-dependency-path: .github/workflows/requirements-linter.txt

- name: Install Python requirements for runner
if: env.GIT_DIFF && !env.MATCHED_FILES
run: pip install -r .github/workflows/requirements-linter.txt

- name: Format file
if: env.GIT_DIFF && !env.MATCHED_FILES
run: |
clang-format -i ${{ env.GIT_DIFF_FILTERED }}
- uses: stefanzweifel/git-auto-commit-action@v4
if: env.GIT_DIFF && !env.MATCHED_FILES
with:
commit_message: "Applied clang-format."
uses: ultimaker/cura-workflows/.github/workflows/lint-formatter.yml@main

0 comments on commit dd95496

Please sign in to comment.