Revert "[Github] Make PR formatting job only run with C/C++ changes (#69556)"

This reverts commit 80b2aac2c671771d74bc5d7426f7bd4ffa0b8a8e.

I mistakenly assumed this job didn't also do python formatting
(should've grepped for more than just black in the python portion of
this script). Pulling it out for now to get python formatting working
again while the patch is iterated further.
This commit is contained in:
Aiden Grossman 2023-10-18 23:28:20 -07:00
parent e4ea099748
commit cd205efb9d

View File

@ -1,19 +1,10 @@
name: "Check code formatting"
on:
pull_request_target:
paths:
- '**/*.cpp'
- '**/*.c'
- '**/*.h'
- '**/*.inc'
on: pull_request_target
permissions:
pull-requests: write
jobs:
cpp_code_formatter:
name: "Check C++ Formatting"
code_formatter:
runs-on: ubuntu-latest
steps:
- name: Fetch LLVM sources