b8ad4e0bb4
* GitHub Apps: Replace `grafanabot` token with `grafana-delivery-bot` GitHub App (#70242) * Update bump-version.yml * Fix secret * [REVERTME] Remove check * Test without grafana-delivery-bot prefix * Check if token exists * Cleanup bump-version * Update gh actions to use app key (cherry picked from commit15a85686c2) # Conflicts: # .github/workflows/backport.yml # .github/workflows/bump-version.yml # .github/workflows/milestone.yml # .github/workflows/update-changelog.yml * Bug: Fix `yaml` identation for github action yamls (#70445) * Fix yaml identation * Fix the rest of the yamls (cherry picked from commit31b9f9d235)
31 lines
1.1 KiB
YAML
31 lines
1.1 KiB
YAML
name: Update changelog
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
required: true
|
|
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'
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "Generate token"
|
|
id: generate_token
|
|
uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92
|
|
with:
|
|
app_id: ${{ secrets.GRAFANA_DELIVERY_BOT_APP_ID }}
|
|
private_key: ${{ secrets.GRAFANA_DELIVERY_BOT_APP_PEM }}
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: "grafana/grafana-github-actions"
|
|
path: ./actions
|
|
ref: main
|
|
- name: Install Actions
|
|
run: npm install --production --prefix ./actions
|
|
- name: Run update changelog (manually invoked)
|
|
uses: ./actions/update-changelog
|
|
with:
|
|
token: ${{ steps.generate_token.outputs.token }}
|
|
metricsWriteAPIKey: ${{ secrets.GRAFANA_MISC_STATS_API_KEY }}
|