2020-11-16 14:34:19 -06:00
name : Update changelog
on :
workflow_dispatch :
inputs :
version :
2021-12-21 07:34:05 -06:00
required : true
2022-09-28 03:52:42 -05:00
description: 'Needs to match, exactly, the name of a milestone. 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'
2023-04-27 02:37:52 -05:00
skip_pr :
required : false
default : "0"
skip_community_post :
required : false
default : "0"
2020-11-16 14:34:19 -06:00
jobs :
main :
runs-on : ubuntu-latest
steps :
2023-04-27 02:37:52 -05:00
- name : Run update changelog (manually invoked)
uses : grafana/grafana-github-actions-go/update-changelog@main
2021-12-20 07:16:22 -06:00
with :
2021-12-21 07:34:05 -06:00
token : ${{ secrets.GH_BOT_ACCESS_TOKEN }}
2023-04-27 02:37:52 -05:00
version : ${{ inputs.version }}
metrics_api_key : ${{ secrets.GRAFANA_MISC_STATS_API_KEY }}
community_api_key : ${{ secrets.GRAFANABOT_FORUM_KEY }}
community_api_username : grafanabot
skip_pr : ${{ inputs.skip_pr }}
skip_community_post : ${{ inputs.skip_community_post }}