From d0f0ac35ebcb8bd05de6425ab5afda1c0397757d Mon Sep 17 00:00:00 2001 From: florianuhlig Date: Sun, 5 Oct 2025 02:42:26 +0200 Subject: [PATCH] a --- .github/workflows/linters.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 47e7e13..91dfe54 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -1,12 +1,12 @@ -name: Black +name: linters on: - push: - branches: - - Development + workflow_run: + workflows: ["Code Review"] + types: ["completed"] #requested jobs: - build-and-test: + on-success: runs-on: ubuntu-latest steps: @@ -32,3 +32,9 @@ jobs: - name: Run pylint run: pylint frontend services utils + + on-failure: + runs-on: ubuntu-latest + if: ${{ github.event.workflow_run.conclusion == 'failure' }} + steps: + - run: echo 'The triggering workflow failed'