mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 17:06:57 -06:00
c8514756be
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
44 lines
1.3 KiB
YAML
44 lines
1.3 KiB
YAML
name: Update changelog
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
required: true
|
|
description: Needs to match, exactly, the name of a milestone
|
|
workflow_call:
|
|
inputs:
|
|
version_call:
|
|
description: Needs to match, exactly, the name of a milestone
|
|
required: true
|
|
type: string
|
|
secrets:
|
|
token:
|
|
required: true
|
|
metricsWriteAPIKey:
|
|
required: true
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- 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)
|
|
if: ${{ github.event.inputs.version != '' }}
|
|
uses: ./actions/update-changelog
|
|
with:
|
|
token: ${{ secrets.GH_BOT_ACCESS_TOKEN }}
|
|
metricsWriteAPIKey: ${{ secrets.GRAFANA_MISC_STATS_API_KEY }}
|
|
- name: Run update changelog (workflow invoked)
|
|
if: ${{ inputs.version_call != '' }}
|
|
uses: ./actions/update-changelog
|
|
with:
|
|
version_call: ${{ inputs.version_call }}
|
|
token: ${{ secrets.token }}
|
|
metricsWriteAPIKey: ${{ secrets.metricsWriteAPIKey }}
|