From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> This adds checkpatch action rather replacing the custom CI one which will be going to be disabled. --- .github/workflows/checkpatch.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/checkpatch.yml diff --git a/.github/workflows/checkpatch.yml b/.github/workflows/checkpatch.yml new file mode 100644 index 000000000000..42ef7d03e157 --- /dev/null +++ b/.github/workflows/checkpatch.yml @@ -0,0 +1,14 @@ +name: Checkpatch on PR + +on: [pull_request] + +jobs: + my_review: + name: checkpatch + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Run checkpatch review + uses: webispy/checkpatch-action@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -- 2.49.0