From 6c2b89bdb2cdcce04d13ff208406e7cb4f0c0ae1 Mon Sep 17 00:00:00 2001 From: Pedro Brochado Date: Thu, 19 Feb 2026 13:33:36 -0300 Subject: [PATCH] Always run the lint workflow on plugin's CI --- templates/github/.github/workflows/ci.yml.j2 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/github/.github/workflows/ci.yml.j2 b/templates/github/.github/workflows/ci.yml.j2 index 4fffe125..a8e5c149 100644 --- a/templates/github/.github/workflows/ci.yml.j2 +++ b/templates/github/.github/workflows/ci.yml.j2 @@ -81,13 +81,13 @@ jobs: {%- endif %} lint: - needs: - - "check-changes" - if: needs.check-changes.outputs.run_tests == '1' uses: "./.github/workflows/lint.yml" build: - needs: "lint" + needs: + - "check-changes" + - "lint" + if: needs.check-changes.outputs.run_tests == '1' uses: "./.github/workflows/build.yml" test: