-
Notifications
You must be signed in to change notification settings - Fork 10
/
action.yml
64 lines (64 loc) · 1.78 KB
/
action.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: 'Bump Spinnaker Dependencies'
description: 'Bump dependencies in external repositories upon a release'
inputs:
ref:
description: 'the release ref triggering this dependency bump'
required: true
baseBranch:
description: 'the branch to update'
required: false
default: 'master'
key:
description: 'the key in gradle.properties to modify'
required: true
repositories:
description: 'the comma-separated list of repository names to modify'
required: true
repoOwner:
description: 'the owner of the repositories to modify'
required: true
default: spinnakerbot
upstreamOwner:
description: 'the owner of the repositories to send pull requests to'
required: true
default: spinnaker
reviewers:
description: "the comma-separated list of reviewers (prefixed with 'team:' for a team) for the pull request"
required: true
default: ''
mavenRepositoryUrl:
description: "the root URL for the repository where this artifact is stored"
required: false
default: ''
groupId:
description: 'the groupId for the artifact in the maven repository'
required: false
default: ''
artifactId:
description: 'the artifactId for the artifact in the maven repository'
required: false
default: ''
runs:
using: 'docker'
image: 'Dockerfile'
args:
- '--ref'
- ${{ inputs.ref }}
- '--base-branch'
- ${{ inputs.baseBranch }}
- '--key'
- ${{ inputs.key }}
- '--repositories'
- ${{ inputs.repositories }}
- '--repo-owner'
- ${{ inputs.repoOwner }}
- '--upstream-owner'
- ${{ inputs.upstreamOwner }}
- '--reviewers'
- ${{ inputs.reviewers }}
- '--maven-repository-url'
- ${{ inputs.mavenRepositoryUrl }}
- '--group-id'
- ${{ inputs.groupId }}
- '--artifact-id'
- ${{ inputs.artifactId }}