From 70a6caa555704ef50184c677d3ce63a5e13393a7 Mon Sep 17 00:00:00 2001 From: Han Ning Date: Thu, 11 Jul 2024 09:51:02 +0800 Subject: [PATCH] enable pull request checking workflow for 6.6-velinux branch Signed-off-by: Han Ning --- .github/workflows/pull-request.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/pull-request.yml diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml new file mode 100644 index 000000000000..13445f3661df --- /dev/null +++ b/.github/workflows/pull-request.yml @@ -0,0 +1,20 @@ +# SPDX-License-Identifier: GPL-2.0-only +# Copyright (c) 2024 ByteDance. + +name: Pull Request Checking + +on: + pull_request: + types: [opened, synchronize, reopened] + branches: + - 6.6-velinux + +jobs: + StaticCheck: + uses: bytedance/kernel/.github/workflows/static.yml@5.4.143-velinux + secrets: + ssh_key: ${{ secrets.SSH_KEY }} + BuildAndTestKernel: + uses: bytedance/kernel/.github/workflows/build-and-test.yml@5.4.143-velinux + secrets: + ssh_key: ${{ secrets.SSH_KEY }}