Skip to content

Commit

Permalink
Add a new github action
Browse files Browse the repository at this point in the history
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
  • Loading branch information
automated-signal and indutny-signal committed Nov 30, 2022
1 parent 88a2c3e commit 8fc1b90
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/notes.yml
@@ -0,0 +1,26 @@
# Copyright 2021-2022 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@v3
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: note-bot@signal.org
git-name: Note Bot

0 comments on commit 8fc1b90

Please sign in to comment.