Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/email_checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: PR email addresses checker

on:
pull_request:

jobs:
pr-check-emails:
runs-on: ubuntu-latest
steps:
- name: Check PR emails
uses: qualcomm/commit-emails-check-action@main
37 changes: 37 additions & 0 deletions .github/workflows/kernel_checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Kernel Checkers
on:
pull_request:
branches:
- tech/bsp/pinctrl

jobs:
prepare:
runs-on:
group: GHA-Kernel-SelfHosted-RG
labels: [ self-hosted, kernel-prd-u2404-x64-large-od-ephem ]
steps:
- name: Checkout PR Code
uses: actions/checkout@v4
with:
fetch-depth: 0
outputs:
kernel_src: ${{ github.workspace }}
base_sha: ${{ github.event.pull_request.base.sha }}
head_sha: ${{ github.event.pull_request.head.sha }}

checker:
needs: prepare
uses: qualcomm-linux/kernel-checkers/.github/workflows/checker.yml@main
with:
check_name: ${{ matrix.check }}
kernel_src: ${{ needs.prepare.outputs.kernel_src }}/kernel
base_sha: ${{ needs.prepare.outputs.base_sha }}
head_sha: ${{ needs.prepare.outputs.head_sha }}
base_branch: ${{ github.base_ref }}
pr_number: ${{ github.event.pull_request.number }}

strategy:
matrix:
check: [check-uapi-headers, sparse-check, checkpatch,
dt-binding-check, dtb-check]
fail-fast: false
8 changes: 8 additions & 0 deletions .github/workflows/pre_merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: pre_merge
on:
pull_request_target:

jobs:
pre-merge:
uses: qualcomm-linux/kernel-config/.github/workflows/pre_merge.yml@main
secrets: inherit