summaryrefslogtreecommitdiff
path: root/.github/workflows/format.yml
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2022-11-28 20:04:04 +0000
committerGitHub <noreply@github.com>2022-11-28 20:04:04 +0000
commit393a37c01294584df31c6c4b538d02b60d9c51bf (patch)
tree5ef0c97f103ec1bc85f98cf79c0024e7ec70636a /.github/workflows/format.yml
parent4ae75259233a45583b6a0d73f1f7224cb50e0398 (diff)
Update files changed action (#19172)
Diffstat (limited to '.github/workflows/format.yml')
-rw-r--r--.github/workflows/format.yml8
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml
index b6ce4063fe..a93fb3a488 100644
--- a/.github/workflows/format.yml
+++ b/.github/workflows/format.yml
@@ -27,16 +27,14 @@ jobs:
run: |
pip3 install -r requirements-dev.txt
- - uses: trilom/file-changes-action@v1.2.4
+ - name: Get changed files
id: file_changes
- with:
- output: ' '
- fileOutput: ' '
+ uses: tj-actions/changed-files@v34
- name: Run qmk formatters
shell: 'bash {0}'
run: |
- cat ~/files_added.txt ~/files_modified.txt > ~/files_changed.txt
+ echo '${{ steps.file_changes.outputs.added_files}}' '${{ steps.file_changes.outputs.modified_files}}' > ~/files_changed.txt
qmk format-c --core-only $(< ~/files_changed.txt) || true
qmk format-python $(< ~/files_changed.txt) || true
qmk format-text $(< ~/files_changed.txt) || true