From a8594d4ecf4b0dbb583ffb04008cd45054f0c622 Mon Sep 17 00:00:00 2001 From: Mathieu Gilet Date: Tue, 29 Oct 2024 11:32:08 +0100 Subject: [PATCH] tech: add check to verify Scalingo applications deployment --- .github/workflows/check-scalingo-deployment.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/check-scalingo-deployment.yaml diff --git a/.github/workflows/check-scalingo-deployment.yaml b/.github/workflows/check-scalingo-deployment.yaml new file mode 100644 index 00000000000..858ded35e65 --- /dev/null +++ b/.github/workflows/check-scalingo-deployment.yaml @@ -0,0 +1,15 @@ +name: Check Scalingo deployment +on: + check_suite: + types: [completed] +jobs: + check-api-deployment: + runs-on: ubuntu-latest + steps: + - name: Check api deployment + uses: MathieuGilet/test-functions/check-scalingo-deployment@main + with: + token: ${{ secrets.GITHUB_TOKEN }} + repository: ${{ github.event.repository.full_name }} + application: "pix-api-review-pr"${{ github.event.pull_requests.number }} + sha: ${{ github.event.head_sha }}