File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -202,7 +202,10 @@ jobs:
202202 echo "| Will Release | $WILL_RELEASE |" >> $GITHUB_STEP_SUMMARY
203203
204204 - name : Comment on PR (version regression)
205- if : github.event_name == 'pull_request' && steps.version_check.outputs.result == 'regression'
205+ if : >-
206+ github.event_name == 'pull_request' &&
207+ github.event.pull_request.head.repo.full_name == github.repository &&
208+ steps.version_check.outputs.result == 'regression'
206209 uses : actions/github-script@v7
207210 with :
208211 script : |
@@ -228,7 +231,10 @@ jobs:
228231 });
229232
230233 - name : Comment on PR (release note)
231- if : github.event_name == 'pull_request' && steps.version_check.outputs.result == 'new_version'
234+ if : >-
235+ github.event_name == 'pull_request' &&
236+ github.event.pull_request.head.repo.full_name == github.repository &&
237+ steps.version_check.outputs.result == 'new_version'
232238 uses : actions/github-script@v7
233239 with :
234240 script : |
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ apiVersion: v2
22name : cost-onprem
33description : Cost Management On-Premise solution for OpenShift
44type : application
5- version : 0.2.14
6- appVersion : " 0.2.14 "
5+ version : 0.2.15
6+ appVersion : " 0.2.15 "
77
88keywords :
99 - cost-management
You can’t perform that action at this time.
0 commit comments