This commit is contained in:
florianuhlig
2025-10-05 02:42:26 +02:00
parent c178e358bb
commit d0f0ac35eb

View File

@@ -1,12 +1,12 @@
name: Black name: linters
on: on:
push: workflow_run:
branches: workflows: ["Code Review"]
- Development types: ["completed"] #requested
jobs: jobs:
build-and-test: on-success:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@@ -32,3 +32,9 @@ jobs:
- name: Run pylint - name: Run pylint
run: pylint frontend services utils 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'