forked from spring-cloud/spring-cloud-dataflow
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (37 loc) · 1.24 KB
/
fix-deployment-files.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Fix Deployment Files
on:
push:
branches:
- main
env:
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'liberica'
- name: Build with Maven
run: ./mvnw process-resources -P deploymentfiles -B --no-transfer-progress
- name: Check Deployment Files
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Update k8s deployment files
committer: SCDF Build Bot <[email protected]>
author: SCDF Build Bot <[email protected]>
body: |
Detected a change with `mvn process-resources -P deploymentfiles`.
This PR were created to align k8s deployment file changes.
title: 'Update k8s deployment files'
labels: automated pr
assignees: ilayaperumalg
reviewers: jvalkeal,ilayaperumalg
branch: github-actions/update-deployment-files