Don't close sticker picker if shift is pressed when sending stickers #101
Workflow file for this run
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: Notes | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
backport: | |
name: Add notes to merge commits | |
if: ${{ github.repository == 'signalapp/Signal-Desktop-Private' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.AUTOMATED_GITHUB_PAT }} | |
repository: signalapp/Signal-Notes-Action-Private | |
path: ./.github/actions/note | |
- name: Run action | |
uses: ./.github/actions/note | |
with: | |
token: ${{ secrets.AUTOMATED_GITHUB_PAT }} | |
git-email: [email protected] | |
git-name: Note Bot |