mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-25 12:47:39 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Fedor Indutny <indutny@signal.org>
29 lines
823 B
YAML
29 lines
823 B
YAML
# Copyright 2024 Signal Messenger, LLC
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
name: Release Notes
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
issues:
|
|
types: [opened]
|
|
pull_request:
|
|
types: [opened, labeled, unlabeled, closed]
|
|
|
|
jobs:
|
|
backport:
|
|
name: Update release notes issue
|
|
if: ${{ github.repository == 'signalapp/Signal-Desktop-Private' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
|
|
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 }}
|