All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ v1 1/2] workflows: Add checkpatch action
@ 2025-04-24 19:56 Luiz Augusto von Dentz
  2025-04-24 19:56 ` [PATCH BlueZ v1 2/2] workflows: Add lint action Luiz Augusto von Dentz
  2025-04-24 21:40 ` [PATCH BlueZ v1 1/2] workflows: Add checkpatch action patchwork-bot+bluetooth
  0 siblings, 2 replies; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2025-04-24 19:56 UTC (permalink / raw)
  To: linux-bluetooth

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

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


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-04-24 21:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-24 19:56 [PATCH BlueZ v1 1/2] workflows: Add checkpatch action Luiz Augusto von Dentz
2025-04-24 19:56 ` [PATCH BlueZ v1 2/2] workflows: Add lint action Luiz Augusto von Dentz
2025-04-24 21:40 ` [PATCH BlueZ v1 1/2] workflows: Add checkpatch action patchwork-bot+bluetooth

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.