forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.4 KiB
37 lines
1.4 KiB
name: Prepare release
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version_input:
|
|
description: 'The version to be released please respect: major.minor.patch or major.minor.patch-beta<number> format. example: 7.4.3 or 7.4.3-beta1'
|
|
required: true
|
|
jobs:
|
|
call-remove-milestone:
|
|
uses: grafana/grafana/.github/workflows/remove-milestone.yml@main
|
|
with:
|
|
version_call: ${{ github.event.inputs.version_input }}
|
|
secrets:
|
|
token: ${{ secrets.GH_BOT_ACCESS_TOKEN }}
|
|
call-close-milestone:
|
|
uses: grafana/grafana/.github/workflows/close-milestone.yml@main
|
|
with:
|
|
version_call: ${{ github.event.inputs.version_input }}
|
|
secrets:
|
|
token: ${{ secrets.GH_BOT_ACCESS_TOKEN }}
|
|
needs: call-remove-milestone
|
|
call-bump-version:
|
|
uses: grafana/grafana/.github/workflows/bump-version.yml@main
|
|
with:
|
|
version_call: ${{ github.event.inputs.version_input }}
|
|
secrets:
|
|
token: ${{ secrets.GH_BOT_ACCESS_TOKEN }}
|
|
metricsWriteAPIKey: ${{ secrets.GRAFANA_MISC_STATS_API_KEY }}
|
|
needs: call-close-milestone
|
|
call-update-changelog:
|
|
uses: grafana/grafana/.github/workflows/update-changelog.yml@main
|
|
with:
|
|
version_call: ${{ github.event.inputs.version_input }}
|
|
secrets:
|
|
token: ${{ secrets.GH_BOT_ACCESS_TOKEN }}
|
|
metricsWriteAPIKey: ${{ secrets.GRAFANA_MISC_STATS_API_KEY }}
|
|
needs: call-bump-version
|
|
|