File tree Expand file tree Collapse file tree 2 files changed +30
-2
lines changed
charts/deployment-operator Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 7474 env :
7575 SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK }} # required
7676 if : always()
77+ bump :
78+ name : Bump Chart Version
79+ runs-on : ubuntu-20.04
80+ needs : [release]
81+ permissions :
82+ contents : write
83+ discussions : write
84+ pull-requests : write
85+ steps :
86+ - name : Checkout
87+ uses : actions/checkout@v3
88+ with :
89+ persist-credentials : false
90+ fetch-depth : 0 # otherwise, you will failed to push refs to dest repo
91+ - name : update chart
92+ 93+ with :
94+ path : ./charts/deployment-operator
95+ release : ${{github.ref_name}}
96+ - name : Create Pull Request
97+ uses : peter-evans/create-pull-request@v5
98+ with :
99+ title : Release ${{github.ref_name}}
100+ body : Automated Pull Request to release ${{github.ref_name}}
101+ commit-message : Updated chart to release ${{github.ref_name}}
102+ labels : release
103+ base : master
104+ branch : release-${{github.ref_name}}
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ apiVersion: v2
22name : deployment-operator
33description : creates a new instance of the plural deployment operator
44type : application
5- version : 0.4.2
6- appVersion : " 0.4.2 "
5+ version : 0.4.3
6+ appVersion : " 0.4.3 "
77maintainers :
88- name : Plural
99 url : https://www.plural.sh
You can’t perform that action at this time.
0 commit comments