Skip to content

Commit

Permalink
Fix skipped CI reports (#2378)
Browse files Browse the repository at this point in the history
* Add always() CI check to publish-qa-results

* Add always() CI check to publish-tf-plan
  • Loading branch information
TylerHendrickson authored Dec 18, 2023
1 parent a7236db commit 0ab2b3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
permissions:
contents: read
pull-requests: write
if: needs.qa.result != 'skipped' || needs.qa.result != 'cancelled'
if: always() && (needs.qa.result != 'skipped' && needs.qa.result != 'cancelled')
needs:
- qa
uses: "./.github/workflows/publish-qa-results.yml"
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
permissions:
contents: read
pull-requests: write
if: needs.tf-plan.result != 'skipped' || needs.tf-plan.result != 'cancelled'
if: always() && (needs.tf-plan.result != 'skipped' && needs.tf-plan.result != 'cancelled')
needs:
- tf-plan
uses: ./.github/workflows/publish-terraform-plan.yml
Expand Down

0 comments on commit 0ab2b3f

Please sign in to comment.