24
24
id : current
25
25
bump-meshery :
26
26
runs-on : ubuntu-latest
27
+ needs : versions-check
27
28
steps :
28
29
- name : Checkout Meshery code
29
30
uses : actions/checkout@v4
@@ -38,30 +39,31 @@ jobs:
38
39
cache-dependency-path : ' **/package-lock.json'
39
40
- name : Make changes to pull request
40
41
working-directory : ui
41
- run : npm install @layer5/sistent@${{job.status }}
42
+ run : npm install @layer5/sistent@${{needs.versions-check.outputs.current }}
42
43
- name : Create Pull Request
43
44
id : cpr
44
45
uses : peter-evans/create-pull-request@v7
45
46
with :
46
47
token : ${{ secrets.RELEASEDRAFTER_PAT }}
47
- commit-message : Bump sistent ${{ github.event.release.tag_name }} dependencies
48
+ commit-message : Bump sistent v ${{ needs.versions-check.outputs.current }} dependencies
48
49
committer : ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
49
50
author : ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
50
51
signoff : true
51
52
branch : bump-sistent-bot
52
53
delete-branch : true
53
- title : ' [Chore]: Bump ${{ github.event.release.name }}'
54
+ title : ' [Chore]: Bump v ${{ needs.versions-check.outputs.current }}'
54
55
add-paths : |
55
56
ui/package.json
56
57
ui/package-lock.json
57
58
body : |
58
- Update to Sistent ${{ github.event.release.tag_name }}
59
+ Update to Sistent v ${{ needs.versions-check.outputs.current }}
59
60
60
61
_This pull request has been auto-generated by [l5io](http://github.com/l5io)_
61
62
assignees : l5io
62
63
draft : false
63
64
bump-meshery-extensions :
64
65
runs-on : ubuntu-latest
66
+ needs : versions-check
65
67
steps :
66
68
- name : Checkout Meshery Extensions code
67
69
uses : actions/checkout@v4
@@ -76,30 +78,31 @@ jobs:
76
78
cache-dependency-path : ' **/package-lock.json'
77
79
- name : Make changes to pull request
78
80
working-directory : meshmap
79
- run : npm install @layer5/sistent@latest
81
+ run : npm install @layer5/sistent@${{needs.versions-check.outputs.current}}
80
82
- name : Create Pull Request
81
83
id : cpr
82
84
uses : peter-evans/create-pull-request@v7
83
85
with :
84
86
token : ${{ secrets.RELEASEDRAFTER_PAT }}
85
- commit-message : Bump sistent ${{ github.event.release.tag_name }} dependencies
87
+ commit-message : Bump sistent v ${{ needs.versions-check.outputs.current }} dependencies
86
88
committer : ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
87
89
author : ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
88
90
signoff : true
89
91
branch : bump-sistent-bot
90
92
delete-branch : true
91
- title : ' [Chore]: Bump ${{ github.event.release.name }}'
93
+ title : ' [Chore]: Bump v ${{needs.versions-check.outputs.current }}'
92
94
add-paths : |
93
95
meshmap/package.json
94
96
meshmap/package-lock.json
95
97
body : |
96
- Update to Sistent ${{ github.event.release.tag_name }}
98
+ Update to Sistent v ${{ needs.versions-check.outputs.current }}
97
99
98
100
_This pull request has been auto-generated by [l5io](http://github.com/l5io)_
99
101
assignees : l5io
100
102
draft : false
101
103
bump-meshery-cloud :
102
104
runs-on : ubuntu-latest
105
+ needs : versions-check
103
106
steps :
104
107
- name : Checkout Meshery Extensions code
105
108
uses : actions/checkout@v4
@@ -114,24 +117,24 @@ jobs:
114
117
cache-dependency-path : ' **/package-lock.json'
115
118
- name : Make changes to pull request
116
119
working-directory : ui
117
- run : npm install @layer5/sistent@latest
120
+ run : npm install @layer5/sistent@${{needs.versions-check.outputs.current}}
118
121
- name : Create Pull Request
119
122
id : cpr
120
123
uses : peter-evans/create-pull-request@v7
121
124
with :
122
125
token : ${{ secrets.RELEASEDRAFTER_PAT }}
123
- commit-message : Bump sistent ${{ github.event.release.tag_name }} dependencies
126
+ commit-message : Bump sistent v ${{ needs.versions-check.outputs.current }} dependencies
124
127
committer : ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
125
128
author : ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
126
129
signoff : true
127
130
branch : bump-sistent-bot
128
131
delete-branch : true
129
- title : ' [Chore]: Bump ${{ github.event.release.name }}'
132
+ title : ' [Chore]: Bump v ${{ needs.versions-check.outputs.current }}'
130
133
add-paths : |
131
134
ui/package.json
132
135
ui/package-lock.json
133
136
body : |
134
- Update to Sistent ${{ github.event.release.tag_name }}
137
+ Update to Sistent v ${{ needs.versions-check.outputs.current }}
135
138
136
139
_This pull request has been auto-generated by [l5io](http://github.com/l5io)_
137
140
assignees : l5io
0 commit comments