diff --git a/.github/workflows/native-tests.yml b/.github/workflows/native-tests-daily.yml similarity index 74% rename from .github/workflows/native-tests.yml rename to .github/workflows/native-tests-daily.yml index 214d388eb1..3a56699ed0 100644 --- a/.github/workflows/native-tests.yml +++ b/.github/workflows/native-tests-daily.yml @@ -1,9 +1,11 @@ name: GraalVM native tests + on: schedule: # daily at 4:00 UTC - cron: '0 4 * * *' workflow_dispatch: + jobs: build: runs-on: ubuntu-latest @@ -22,3 +24,11 @@ jobs: gu --version native-image --version ./gradlew nativeTest + + workflow-notification: + needs: + - build + if: always() + uses: ./.github/workflows/reusable-workflow-notification.yml + with: + success: ${{ needs.build.result == 'success' }}