DEV-47515: Added evalValues in expected parts of the test to align with prod code. #70
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Backport PR Creator | |
on: | |
pull_request_target: | |
types: | |
- closed | |
- labeled | |
jobs: | |
main: | |
if: github.repository == 'grafana/grafana' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Actions | |
uses: actions/checkout@v4 | |
with: | |
repository: "grafana/grafana-github-actions" | |
path: ./actions | |
ref: main | |
- name: Install Actions | |
run: npm install --production --prefix ./actions | |
- 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: Run backport | |
uses: ./actions/backport | |
with: | |
metricsWriteAPIKey: ${{secrets.GRAFANA_MISC_STATS_API_KEY}} | |
token: ${{ steps.generate_token.outputs.token }} | |
labelsToAdd: "backport" | |
title: "[{{base}}] {{originalTitle}}" |