Automation: Adds new changelog actions (#29142)

* Automation: Adds new changelog actions

* Update

* Add newline

* added link

* Another fix
This commit is contained in:
Torkel Ödegaard
2020-11-16 21:34:19 +01:00
committed by GitHub
parent 8c7e7e6d22
commit d6d5d8cf4a
4 changed files with 2296 additions and 2256 deletions

View File

@@ -15,6 +15,9 @@ jobs:
repository: "grafana/grafana-github-actions"
path: ./actions
ref: main
- uses: actions/setup-node@v1
with:
node-version: '12'
- name: Install Actions
run: npm install --production --prefix ./actions
- name: Run bump version

27
.github/workflows/update-changelog.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
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
- uses: actions/setup-node@v1
with:
node-version: '12'
- 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}}

File diff suppressed because it is too large Load Diff

2257
CHANGELOG_ARCHIVE.md Normal file

File diff suppressed because it is too large Load Diff