From 2e62d5e044bad7d6ccdfac09c0367b08baac2cb2 Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Tue, 21 May 2024 11:12:21 -0700 Subject: [PATCH] Add release notes workflow --- .github/workflows/release-notes.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/release-notes.yml diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml new file mode 100644 index 000000000000..ff9c5872d652 --- /dev/null +++ b/.github/workflows/release-notes.yml @@ -0,0 +1,26 @@ +# Copyright 2024 Signal Messenger, LLC +# SPDX-License-Identifier: AGPL-3.0-only + +name: Release Notes +on: + issue_comment: + types: [created] + issues: + types: [opened] + +jobs: + backport: + name: Update release notes issue + if: ${{ github.repository == 'signalapp/Signal-Desktop-Private' }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + token: ${{ secrets.AUTOMATED_GITHUB_PAT }} + repository: signalapp/Signal-Release-Notes-Action-Private + path: ./.github/actions/release-notes + - name: Run action + uses: ./.github/actions/release-notes + with: + token: ${{ secrets.AUTOMATED_GITHUB_PAT }}