We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5bbc62 commit ce1a779Copy full SHA for ce1a779
.github/workflows/native-tests-daily.yml
@@ -5,9 +5,12 @@ on:
5
# daily at 4:00 UTC
6
- cron: "0 4 * * *"
7
workflow_dispatch:
8
+ pull_request:
9
+ types: [ labeled ]
10
11
jobs:
- build:
12
+ graalvm-native-tests:
13
+ if: ${{ github.event.label.name == 'native' || github.event.label.name == 'spring boot starter' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}}
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
@@ -27,8 +30,8 @@ jobs:
27
30
28
31
workflow-notification:
29
32
needs:
- - build
- if: always()
33
+ - graalvm-native-tests
34
+ if: github.event_name == 'schedule'
35
uses: ./.github/workflows/reusable-workflow-notification.yml
36
with:
37
success: ${{ needs.build.result == 'success' }}
0 commit comments