From 14fef8c100ed518b30050ee4f761dbc52ef79f17 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 27 Mar 2024 14:33:52 +0000 Subject: [PATCH] Make send notification action available to verify job --- .github/workflows/build-and-deploy-snapshot.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-and-deploy-snapshot.yml b/.github/workflows/build-and-deploy-snapshot.yml index 3e044812a2..0e9d0aaa85 100644 --- a/.github/workflows/build-and-deploy-snapshot.yml +++ b/.github/workflows/build-and-deploy-snapshot.yml @@ -79,6 +79,11 @@ jobs: repository: spring-projects/spring-boot-release-verification ref: 'main' token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} + - name: Check out send notification action + uses: actions/checkout@v4 + with: + path: spring-boot + sparse-checkout: .github/actions/send-notification - name: Set up Java uses: actions/setup-java@v4 with: @@ -105,7 +110,7 @@ jobs: name: build-reports path: '**/build/reports/' - name: Send notification - uses: ./.github/actions/send-notification + uses: ./spring-boot/.github/actions/send-notification if: always() with: webhook-url: ${{ secrets.GOOGLE_CHAT_WEBHOOK_URL }}