From 595777042457aa96a4083d89a8ab92e14c715011 Mon Sep 17 00:00:00 2001 From: Erin Dalzell Date: Tue, 4 Aug 2026 16:39:46 -0700 Subject: [PATCH] Post to satis with auth --- .github/workflows/satis.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/satis.yml b/.github/workflows/satis.yml index 14ebd2e..99edd4c 100644 --- a/.github/workflows/satis.yml +++ b/.github/workflows/satis.yml @@ -12,6 +12,14 @@ jobs: steps: - name: Deploy - uses: jbrooksuk/laravel-forge-action@v1.0.2 - with: - trigger_url: ${{ secrets.SATIS_TRIGGER_URL }} + run: | + curl \ + --fail \ + --silent \ + --show-error \ + --user-agent "Satis-GitHubAction/1.0" \ + --max-time 5 \ + --connect-timeout 5 \ + --request POST \ + --user "${{ secrets.SATIS_TRIGGER_AUTH_USER }}:${{ secrets.SATIS_TRIGGER_AUTH_PASS }}" \ + "${{ secrets.SATIS_TRIGGER_URL }}"