From 14b9c94106c8d79515cc2179febf5d6148edddf3 Mon Sep 17 00:00:00 2001 From: Omar Shaarawi Date: Fri, 29 May 2026 21:04:23 -0500 Subject: [PATCH] Add deploy workflow: ping bloombilt-infra on push to master --- .github/workflows/deploy.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..80dc08da --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,20 @@ +name: deploy + +# On push to the default branch, ping bloombilt-infra to redeploy. The infra +# stack rebuilds this app's image and CloudFormation rolls the service. +# docuseal's default branch is master (not main). +on: + push: + branches: [master] + +permissions: + contents: read + +jobs: + trigger: + runs-on: ubuntu-latest + steps: + - name: Ping bloombilt-infra to redeploy + env: + GH_TOKEN: ${{ secrets.BLOOMBILT_CI_TOKEN }} + run: gh api -X POST repos/bloombilt/bloombilt-infra/dispatches -f event_type=app-changed