From 8cb2beddbb4ae303a03f353be06be6b7f5cac5f5 Mon Sep 17 00:00:00 2001 From: Han Ning Date: Fri, 23 Aug 2024 01:37:45 +0800 Subject: [PATCH] enable pull request checking workflow for 5.4.143-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 0000000000000..a49e31244c307 --- /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: + - 5.4.143-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 }}