mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
24 lines
876 B
YAML
24 lines
876 B
YAML
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-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 }}
|
|
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
|