Skip to content

Commit 869edd4

Browse files
committed
[CI] Add check-samples.yml to main CI
Signed-off-by: onobc <[email protected]>
1 parent f2457cd commit 869edd4

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/check-samples.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
name: Check Samples
22

33
on:
4+
45
workflow_dispatch:
56

7+
workflow_call:
8+
secrets:
9+
SLACK_WEBHOOK_URL:
10+
required: true
11+
GRADLE_ENTERPRISE_SECRET_ACCESS_KEY:
12+
required: true
13+
ARTIFACTORY_USERNAME:
14+
required: true
15+
ARTIFACTORY_PASSWORD:
16+
required: true
617
env:
718
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
819
DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,15 @@ jobs:
8383
name: test-results
8484
path: '*/build/reports/tests/**/*.*'
8585
retention-days: 3
86+
8687
check_samples:
8788
name: Check Sample Apps
8889
needs: [prerequisites]
90+
uses: ./.github/workflows/check-samples.yml
91+
with:
92+
secrets:
93+
inherit
94+
8995
strategy:
9096
matrix:
9197
springBootVersion: [ "${{ needs.prerequisites.outputs.boot_version }}" ]

0 commit comments

Comments
 (0)