Merge branch 'rjwignar/issue-128-test' of https://github.com/rjwignar… #148
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: Run clang-format Linter | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
- rjwignar/issue-128-test | |
pull_request_target: | |
branches: | |
- main | |
- dev | |
workflow_dispatch: | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# check out HEAD on the branch | |
ref: ${{ github.head_ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
# make sure the parent commit is grabbed as well, because | |
# that's what will get formatted (i.e. the most recent commit) | |
fetch-depth: 2 | |
# retrieve comma-separated list of modified files | |
- name: Retrieve changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v42.0.5 | |
with: | |
files: | | |
src/Features/*.cpp | |
src/Features/*.h | |
**/*.hlsl | |
**/*.hlsli | |
separator: "," | |
# process modified files list before passing to clang-format-lint-action | |
- name: Process changed files list | |
id: process-list | |
run: | | |
CHANGED_FILES="${{ steps.changed-files.outputs.all_changed_files }}" | |
CHANGED_FILES="${CHANGED_FILES// /\\ }" | |
CHANGED_FILES=$(echo "$CHANGED_FILES" | tr ',' ' ') | |
echo "::set-output name=changed_files::${CHANGED_FILES}" | |
# format the latest commit | |
- name: Format changed files | |
if: steps.changed-files.outputs.any_changed == 'true' | |
uses: DoozyX/clang-format-lint-action@v0.17 | |
with: | |
source: "${{ steps.process-list.outputs.changed_files }}" | |
exclude: "extern include" | |
extensions: "h,cpp,c,hlsl,hlsli" | |
clangFormatVersion: 16 | |
inplace: True # commit the changes (if there are any) | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "style: 🎨 apply clang-format changes" | |
branch: ${{ github.head_ref }} |