diff mbox series

[BlueZ,v1,1/2] workflows: Add checkpatch action

Message ID 20250424195643.1375697-1-luiz.dentz@gmail.com
State New
Headers show
Series [BlueZ,v1,1/2] workflows: Add checkpatch action | expand

Commit Message

Luiz Augusto von Dentz April 24, 2025, 7:56 p.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

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

Comments

patchwork-bot+bluetooth@kernel.org April 24, 2025, 9:40 p.m. UTC | #1
Hello:

This series was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Thu, 24 Apr 2025 15:56:41 -0400 you wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
> 
> 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

Here is the summary with links:
  - [BlueZ,v1,1/2] workflows: Add checkpatch action
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=55b02fe5a2bd
  - [BlueZ,v1,2/2] workflows: Add lint action
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=faca96e9c9a3

You are awesome, thank you!
diff mbox series

Patch

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 }}