2023-01-03 11:55:46 -08:00
|
|
|
# Copyright 2021 Signal Messenger, LLC
|
2021-06-01 11:04:56 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
name: Backport
|
|
|
|
on:
|
|
|
|
issue_comment:
|
|
|
|
types: [created]
|
|
|
|
pull_request:
|
2022-11-15 14:20:15 -08:00
|
|
|
types: [opened, labeled, unlabeled, closed]
|
2021-06-01 11:04:56 -07:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
backport:
|
|
|
|
name: Apply labels and open backport pull requests
|
|
|
|
if: ${{ github.repository == 'signalapp/Signal-Desktop-Private' }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-06-27 14:48:40 -07:00
|
|
|
uses: actions/checkout@v4
|
2021-06-01 11:04:56 -07:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.AUTOMATED_GITHUB_PAT }}
|
|
|
|
repository: signalapp/Signal-Backport-Action-Private
|
|
|
|
path: ./.github/actions/backport
|
|
|
|
- name: Run action
|
|
|
|
uses: ./.github/actions/backport
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.AUTOMATED_GITHUB_PAT }}
|
|
|
|
git-email: backport-bot@signal.org
|
|
|
|
git-name: Backport Bot
|