* [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
* [PATCH BlueZ v1 2/2] workflows: Add lint action
2025-04-24 19:56 [PATCH BlueZ v1 1/2] workflows: Add checkpatch action Luiz Augusto von Dentz
@ 2025-04-24 19:56 ` Luiz Augusto von Dentz
2025-04-24 21:40 ` [PATCH BlueZ v1 1/2] workflows: Add checkpatch action patchwork-bot+bluetooth
1 sibling, 0 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 lint action replacing the custom CI one which will be going
to be disabled.
---
.github/workflows/lint.yml | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
create mode 100644 .github/workflows/lint.yml
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
new file mode 100644
index 000000000000..9f775cf638f6
--- /dev/null
+++ b/.github/workflows/lint.yml
@@ -0,0 +1,32 @@
+---
+name: Lint
+
+on: # yamllint disable-line rule:truthy
+ push: null
+
+permissions: {}
+
+jobs:
+ build:
+ name: Lint
+ runs-on: ubuntu-latest
+
+ permissions:
+ contents: read
+ packages: read
+ # To report GitHub Actions status checks
+ statuses: write
+
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
+ with:
+ # super-linter needs the full git history to get the
+ # list of files that changed across commits
+ fetch-depth: 0
+
+ - name: Super-linter
+ uses: super-linter/super-linter@v7.3.0 # x-release-please-version
+ env:
+ # To report GitHub Actions status checks
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
--
2.49.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH BlueZ v1 1/2] workflows: Add checkpatch action
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 ` patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+bluetooth @ 2025-04-24 21:40 UTC (permalink / raw)
To: Luiz Augusto von Dentz; +Cc: linux-bluetooth
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!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [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.