mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
27 lines
704 B
YAML
27 lines
704 B
YAML
name: Backport PR Creator
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- closed
|
|
- labeled
|
|
|
|
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 backport
|
|
uses: ./actions/backport
|
|
with:
|
|
metricsWriteAPIKey: ${{secrets.GRAFANA_MISC_STATS_API_KEY}}
|
|
token: ${{secrets.GH_BOT_ACCESS_TOKEN}}
|
|
labelsToAdd: "backport,no-changelog"
|
|
title: "[{{base}}] {{originalTitle}}"
|