From a28f05fddc852b9a6c30196ebbbfbb641cac9ced Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= <2887858+deivid-rodriguez@users.noreply.github.com> Date: Thu, 16 Oct 2025 12:30:15 +0200 Subject: [PATCH] Don't run reviewdog on pushes As configured, it's meant to annotate PRs with linter errors (so you don't have to skim through logs). So it does not make sense for pushes. In fact, on pushes rubocop action is doing nothing, and prettier action is failing with: > reviewdog: this is not PullRequest build. > sed: couldn't write 80 items to stdout: Broken pipe --- .github/workflows/linters.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 9711bff6e4..bd12196f2c 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -1,5 +1,5 @@ name: Linters -on: [push, pull_request] +on: [pull_request] permissions: contents: read # to fetch code (actions/checkout) jobs: