From e2d5dd2cfae44351773ed2687536e0d96d71b0b2 Mon Sep 17 00:00:00 2001 From: Xiaofeng Wang Date: Tue, 10 Dec 2024 17:38:10 +0800 Subject: [PATCH 1/2] ci: remove python checking from CI No python code in the repo any more Signed-off-by: Xiaofeng Wang --- .github/workflows/python.yml | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .github/workflows/python.yml diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml deleted file mode 100644 index 129917897..000000000 --- a/.github/workflows/python.yml +++ /dev/null @@ -1,8 +0,0 @@ -name: Python static analysis -on: [push, pull_request] -jobs: - ruff: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: chartboost/ruff-action@v1 From f8b7e946c7a916ab672214f9ce44db00ba17736a Mon Sep 17 00:00:00 2001 From: Xiaofeng Wang Date: Tue, 10 Dec 2024 17:44:13 +0800 Subject: [PATCH 2/2] ci: fix labeler action error Fix "The configuration file (path: .github/labeler.yml) was not found locally" error Signed-off-by: Xiaofeng Wang --- .github/workflows/labeler.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index bd636ad44..cc4a8781e 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -9,4 +9,5 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: - - uses: actions/labeler@v5 \ No newline at end of file + - uses: actions/checkout@v4 + - uses: actions/labeler@v5