mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-08-27 00:22:29 +01:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 7.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6.0.2...3d3c42e5aac5ba805825da76410c181273ba90b1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v6
|
|
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 }}
|