From fd697c60197288ccba6d50a7aef31684b16f12fd Mon Sep 17 00:00:00 2001 From: Noah Saso <6721426+NoahSaso@users.noreply.github.com> Date: Mon, 13 Apr 2026 18:57:35 -0400 Subject: [PATCH] feat: notify ops repo on version tag releases --- .github/workflows/docker-build-push.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/docker-build-push.yml b/.github/workflows/docker-build-push.yml index ce9ced58..a6c4aa73 100644 --- a/.github/workflows/docker-build-push.yml +++ b/.github/workflows/docker-build-push.yml @@ -79,3 +79,21 @@ jobs: if: always() with: sarif_file: 'trivy-results.sarif' + + notify-ops: + needs: [build-and-push] + if: startsWith(github.ref, 'refs/tags/v') + runs-on: ubuntu-latest + steps: + - name: Notify ops of new release + uses: peter-evans/repository-dispatch@v3 + with: + token: ${{ secrets.OPS_REPO_PAT }} + repository: NoahSaso/intentional-design-ops + event-type: argus-fork-release + client-payload: > + { + "repo": "${{ github.repository }}", + "tag": "${{ github.ref_name }}", + "sha": "${{ github.sha }}" + }