Desktop 6.39.0 / Win11@x64, not connected to internet after hibernation, never recovers.. quit just hides, had to kill task #12703
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2021 Signal Messenger, LLC | |
# SPDX-License-Identifier: AGPL-3.0-only | |
name: Backport | |
on: | |
issue_comment: | |
types: [created] | |
pull_request: | |
types: [opened, labeled, unlabeled, closed] | |
jobs: | |
backport: | |
name: Apply labels and open backport pull requests | |
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-Backport-Action-Private | |
path: ./.github/actions/backport | |
- name: Run action | |
uses: ./.github/actions/backport | |
with: | |
token: ${{ secrets.AUTOMATED_GITHUB_PAT }} | |
git-email: [email protected] | |
git-name: Backport Bot |