Automation: Add backport github action (#28318)

This commit is contained in:
Torkel Ödegaard 2020-10-16 15:47:01 +02:00 committed by GitHub
parent 65b7394ff8
commit 5036c87540
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

26
.github/workflows/backport.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Backport PR Creator
on:
pull_request:
types:
- closed
- labeled
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 backport
uses: ./actions/backport
with:
metricsWriteAPIKey: ${{secrets.GRAFANA_MISC_STATS_API_KEY}}
token: ${{secrets.GH_BOT_ACCESS_TOKEN}}
labelsToAdd: "backport"
title: "[{{base}}] {{originalTitle}}"