mirror of
https://github.com/pomerium/pomerium.git
synced 2025-08-04 09:19:39 +02:00
* roll back to using ubuntu-22.04 images pending https://github.com/actions/runner-images/issues/11471 resolution, this moves us back to images that were working. * move test back to latest
27 lines
713 B
YAML
27 lines
713 B
YAML
name: Backport
|
|
permissions:
|
|
contents: read
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- closed
|
|
- labeled
|
|
|
|
jobs:
|
|
backport:
|
|
runs-on: ubuntu-22.04
|
|
name: Backport
|
|
steps:
|
|
- name: Generate token
|
|
id: generate_token
|
|
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
|
|
with:
|
|
app_id: ${{ secrets.BACKPORT_APP_APPID }}
|
|
private_key: ${{ secrets.BACKPORT_APP_PRIVATE_KEY }}
|
|
|
|
- name: Backport
|
|
uses: pomerium/backport@e2ffd4c5a70730dfd19046859dfaf366e3de6466
|
|
with:
|
|
github_token: ${{ steps.generate_token.outputs.token }}
|
|
title_template: "{{originalTitle}}"
|
|
copy_original_labels: true
|