Skip to content

Commit 21b137e

Browse files
authored
chore: Reactivate backport workflow action (#4343)
1 parent fdb8dc7 commit 21b137e

File tree

2 files changed

+56
-27
lines changed

2 files changed

+56
-27
lines changed

.github/workflows/backport.yml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Backport PR Creator
2+
on:
3+
pull_request:
4+
types:
5+
- closed
6+
- labeled
7+
8+
jobs:
9+
main:
10+
# We don't run the backporting for PRs from forks because those can't access "pyroscope-development-app" secrets in vault.
11+
# We don't use GitHub actions app (secrets.GITHUB_TOKEN) because PRs created by the bot don't trigger CI.
12+
# Also only run if the PR is merged, as an extra safe-guard.
13+
if: ${{ ! github.event.pull_request.head.repo.fork && github.event.pull_request.merged == true }}
14+
15+
runs-on: ubuntu-latest
16+
permissions:
17+
contents: "read"
18+
id-token: "write"
19+
pull-requests: "write"
20+
steps:
21+
- name: Checkout Actions
22+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23+
with:
24+
repository: "grafana/grafana-github-actions"
25+
persist-credentials: false
26+
path: ./actions
27+
ref: 066cbcd084b61558d99d13c76f835c49e31b4670
28+
29+
- name: Install Actions
30+
run: npm install --production --prefix ./actions
31+
32+
- id: get-secrets
33+
uses: grafana/shared-workflows/actions/get-vault-secrets@28361cdb22223e5f1e34358c86c20908e7248760
34+
with:
35+
repo_secrets: |
36+
GITHUB_APP_ID=pyroscope-development-app:app-id
37+
GITHUB_APP_PRIVATE_KEY=pyroscope-development-app:private-key
38+
39+
- name: Generate token
40+
id: app-token
41+
uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2.0.2
42+
with:
43+
app-id: ${{ env.GITHUB_APP_ID }}
44+
private-key: ${{ env.GITHUB_APP_PRIVATE_KEY }}
45+
owner: ${{ github.repository_owner }}
46+
repositories: |
47+
pyroscope
48+
49+
- name: Run backport
50+
uses: ./actions/backport
51+
with:
52+
token: ${{ steps.app-token.outputs.token }}
53+
labelsToAdd: backport
54+
# The provided token needs read permissions for organization members if you want to remove the default reviewers.
55+
removeDefaultReviewers: false
56+
title: "[{{base}}] {{originalTitle}}"

.github/workflows_disabled/backport.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)