Skip to content

Commit

Permalink
adding bump chart app version github workflow (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrmr33 authored Dec 5, 2023
1 parent 8220944 commit 46bb588
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/bump-chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
description: 'The new app-version'
required: true
type: string
token:
description: 'The github token to use to create the PR'
type: string
default: ${{ github.token }}

jobs:
update-app-version:
Expand Down Expand Up @@ -43,8 +47,8 @@ jobs:
id: cpr
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ inputs.token }}
title: '[bump] ${{ inputs.chart-name }} - ${{inputs.app-version}}'
branch: release
branch: bump/${{ inputs.chart-name }}_${{inputs.app-version}}
delete-branch: true
labels: release_auto_version_bump
labels: auto_version_bump

0 comments on commit 46bb588

Please sign in to comment.