Skip to content

Commit

Permalink
workflows: allow to release old commit/tag
Browse files Browse the repository at this point in the history
  • Loading branch information
aabouzaid committed Oct 8, 2021
1 parent 777f2ed commit 6d729db
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,19 @@ on:
branches: ['release-*']
# Allow to run the workflow from GitHub UI and other workflows.
workflow_dispatch:
inputs:
# This allows to release old commit/tag.
push-autogenerated-changelog:
description: 'Push autogenerated changelog back to the repo'
required: false
default: 'true'

env:
HELM_VERSION: 3.4.0

jobs:
update-charts-changelog:
if: github.event.inputs.push-autogenerated-changelog == 'true'
runs-on: ubuntu-latest
container: quay.io/git-chglog/git-chglog:0.15.0
steps:
Expand Down

0 comments on commit 6d729db

Please sign in to comment.