From 82f35470a212aaf7bf5765c22397aa08c5be08b1 Mon Sep 17 00:00:00 2001 From: Sam <109683132+kernelsam@users.noreply.github.com> Date: Mon, 23 Mar 2026 10:20:53 -0700 Subject: [PATCH] #136 CI maintenance: clean up cspell and slack notification wiring --- .github/workflows/docker-push-containers-to-dockerhub.yaml | 6 ++---- .vscode/cspell.json | 5 +++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker-push-containers-to-dockerhub.yaml b/.github/workflows/docker-push-containers-to-dockerhub.yaml index 60762b9..7f860e7 100644 --- a/.github/workflows/docker-push-containers-to-dockerhub.yaml +++ b/.github/workflows/docker-push-containers-to-dockerhub.yaml @@ -9,8 +9,6 @@ permissions: {} jobs: docker-push-containers-to-dockerhub: - outputs: - status: ${{ job.status }} permissions: attestations: write contents: write @@ -36,10 +34,10 @@ jobs: slack-notification: needs: [docker-push-containers-to-dockerhub] - if: ${{ always() && contains(fromJSON('["failure", "cancelled"]'), needs.docker-push-containers-to-dockerhub.outputs.status) }} + if: ${{ always() && contains(fromJSON('["failure", "cancelled"]'), needs.docker-push-containers-to-dockerhub.result) }} secrets: SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }} uses: senzing-factory/build-resources/.github/workflows/build-failure-slack-notification.yaml@v4 with: - job-status: ${{ needs.docker-push-containers-to-dockerhub.outputs.status }} + job-status: ${{ needs.docker-push-containers-to-dockerhub.result }} diff --git a/.vscode/cspell.json b/.vscode/cspell.json index a099bf5..687283d 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -11,7 +11,6 @@ "cooldown", "Dockerfiles", "dockerhub", - "esbenp", "ICLA", "ignorefile", "kernelsam", @@ -27,5 +26,7 @@ "testrun", "toplevel" ], - "ignorePaths": [".git/**"] + "ignorePaths": [ + ".git/**" + ] }