From e6fa82fb4883e95236fdb00db08fbd5d96a819e6 Mon Sep 17 00:00:00 2001 From: "Kenta Goto (k.goto)" <24818752+go-to-k@users.noreply.github.com> Date: Thu, 22 Aug 2024 22:01:15 +0900 Subject: [PATCH] ci: don't run CI in PR actions (#247) --- .github/workflows/ci.yml | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 526149c..50db45b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,16 +5,9 @@ on: paths-ignore: - 'README.md' tags-ignore: - - "v[0-9]+.[0-9]+.[0-9]+" + - 'v[0-9]+.[0-9]+.[0-9]+' branches: - - "*" - pull_request: - types: - - opened - - synchronize - - reopened - paths-ignore: - - 'README.md' + - '*' jobs: test: @@ -59,7 +52,7 @@ jobs: go_version_file: go.mod github_token: ${{ secrets.GITHUB_TOKEN }} reporter: github-pr-review - level: error + level: error filter_mode: nofilter - golangci_lint_flags: "--config=.golangci.yml" - fail_on_error: true \ No newline at end of file + golangci_lint_flags: '--config=.golangci.yml' + fail_on_error: true