From 64df92247996fbf9f237317a815dcff2a183bc73 Mon Sep 17 00:00:00 2001 From: xun Date: Sat, 4 Nov 2023 21:51:48 +0800 Subject: [PATCH] Update link.yml --- .github/workflows/link.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/link.yml b/.github/workflows/link.yml index 5c8f06b..b5fa1e2 100644 --- a/.github/workflows/link.yml +++ b/.github/workflows/link.yml @@ -39,7 +39,7 @@ jobs: - name: Send Success Message if: ${{ success() }} run: | - bash ../../scripts/webhook.sh \ + bash ./scripts/webhook.sh \ -u "https://github.com/${{ github.repository }}/commit/${{ github.sha }}/checks/${{ github.run_id }}" \ -w ${{ secrets.WEBHOOK_URL }} \ -s sast_link -c "${{github.event.pull_request.user.login}}" -f 'success' \ @@ -48,7 +48,7 @@ jobs: - name: Send Fail Message if: ${{ failure() }} run: | - bash ../../scripts/webhook.sh \ + bash ./scripts/webhook.sh \ -u "https://github.com/${{ github.repository }}/commit/${{ github.sha }}/checks/${{ github.run_id }}" \ -w ${{ secrets.WEBHOOK_URL }} \ -s sast_link -c "${{github.event.pull_request.user.login}}" -f 'false' \