From 209b2e8a1fae8b87cc3587e94fa0619963937124 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Sun, 24 Sep 2023 13:12:45 +0900 Subject: [PATCH] optimize: workflow --- .github/workflows/push.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index e30c986d..413fd8d3 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -15,6 +15,7 @@ jobs: - name: golangci-lint uses: golangci/golangci-lint-action@master + continue-on-error: true with: version: latest @@ -25,7 +26,7 @@ jobs: git config --local user.name 'github-actions[bot]' git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com' git add --all - git commit -m "🎨 改进代码样式" + git commit -m "chore(lint): 改进代码样式" - name: Create Pull Request if: ${{ !github.head_ref }}