mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
d2fb910912
* Automation: Adds GitHub release action * Updated wording * minor update
25 lines
711 B
YAML
25 lines
711 B
YAML
name: Update changelog
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
required: true
|
|
description: Needs to match, exactly, the name of a milestone
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: "grafana/grafana-github-actions"
|
|
path: ./actions
|
|
ref: main
|
|
- name: Install Actions
|
|
run: npm install --production --prefix ./actions
|
|
- name: Run update changelog
|
|
uses: ./actions/update-changelog
|
|
with:
|
|
token: ${{secrets.GH_BOT_ACCESS_TOKEN}}
|
|
metricsWriteAPIKey: ${{secrets.GRAFANA_MISC_STATS_API_KEY}}
|