Skip to content

Commit

Permalink
Merge pull request #7669 from ehuelsmann/improve-ci-1.11
Browse files Browse the repository at this point in the history
Invert the 'testing-done' condition
  • Loading branch information
ehuelsmann committed Oct 22, 2023
2 parents 93d31e9 + a5fb6fd commit 81cb1e2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -522,10 +522,13 @@ jobs:
testing-done:
runs-on: ubuntu-latest
needs: [ test-database, test-pure-perl, test-remainder, test-webservices ]
if: failure()
# This job gets skipped on successful completion of the dependent jobs
# Skipped jobs are interpreted as 'success' condition in branch protection rules...
steps:
- name: Done
- name: Failed
run: |
echo "DONE!"
exit 1
build-dev:
if: github.event.pull_request.merged == true
Expand Down

0 comments on commit 81cb1e2

Please sign in to comment.