ci: Only run build-test/notify-clio if should-run indicates to (#5777)

- Fixes an issue introduced by #5762 which removed the transitive `should-run` check from these two jobs.
This commit is contained in:
Ayaz Salikhov
2025-09-09 16:25:41 +01:00
committed by GitHub
parent bcde2790a4
commit da4c8c9550

View File

@@ -103,6 +103,7 @@ jobs:
build-test:
needs: should-run
if: needs.should-run.outputs.go == 'true'
uses: ./.github/workflows/build-test.yml
strategy:
matrix:
@@ -116,6 +117,7 @@ jobs:
needs:
- should-run
- build-test
if: needs.should-run.outputs.go == 'true'
uses: ./.github/workflows/notify-clio.yml
secrets:
clio_notify_token: ${{ secrets.CLIO_NOTIFY_TOKEN }}